Computer Science, asked by sowjanyanimmakayala2, 1 day ago

What will be the output? #include int main() int a = 70; printf("%d", a); return 0;​

Answers

Answered by CrazyKanav
0

Answer:

70

Explanation:

because a = 70, and it is printing 70, return 0 just means the program excuted correctly. #include , includes a library and int main is the function needed to excute a program in c. Hope it helps :)

Similar questions