Computer Science, asked by vasanthanraja23, 3 months ago

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 darksoul482
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