Addition of Two numbers
#include <stdio.h>
int main() {
int i=10,j=20,add;
add=i+j;
printf("addition of two numbers is = %d\n",add);
return 0;
}
output:-
addition of two numbers is = 30
What is an example of iteration in C? An example of iteration in C is using a loop con…
0 కామెంట్లు