What will be output if you will execute following program by gcc compiler in Linux?

What will be output if you will execute following program by gcc compiler in Linux?

#include
int main(){
int a=5,b=10,c=15,d=20;
printf("%d %d %d");
return 0;
}



Output:
In LINUX GCC compiler
Garbage values
In TURBO C
5 10 15

No comments:

Post a Comment