Question:What will be output if you will compile and execute the following c code?
#include<stdio.h> int main(){ int x=5,y=10,z=15; printf("%d %d %d"); return 0; }
A Garbage Garbage Garbage
B 5 10 15
C 15 10 5
D Compiler error
E 15 10 4
+ AnswerA
+ Report