main( ) { int x=1, y=2; printf("%d", x, y); } what will be the output?
Answers
Answered by
0
Answer:
The output for the given program -
1
If you want x and y both output then, the programming should be
int x = 1,y = 2;
printf("%d, %d", x, y) ;
Now the output will be
1,2
Similar questions
Chemistry,
1 month ago
English,
3 months ago
Hindi,
3 months ago
English,
10 months ago
CBSE BOARD X,
10 months ago