Computer Science, asked by omkarkashid12345, 5 hours ago

#include <stdio.h>
int main(){
int a b;
int c;
a = 10;
b=20;
c=a+b;
printf("value of a = %d, b = %d and c = %d\n", a, b, c);
return 0;
}​

Answers

Answered by kiran12355
1

Answer:

output is of above program is

10

20

30

Similar questions