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
🧾 Program Statement Write a C program to accept a character from the user and displ…
0 కామెంట్లు