what will be the output of the following C code?Int a=12; Void main() {int a=5; printf("%d",a); getch();}
Answers
Answered by
2
Answer:
int a = 5; int b = ++a * a++; printf("%d ",b); return 0;. } (a) 25. (b) 30. (c) 36 ... output of the following program? #include <stdio.h> void f(char**); int main ().
Similar questions
Social Sciences,
2 months ago
English,
5 months ago
English,
5 months ago
Math,
11 months ago
Math,
11 months ago