Computer Science, asked by nehanshsuthar133, 3 months ago

main( ) { int x=1, y=2; printf("%d", x, y); } what will be the output?​

Answers

Answered by Thinkab13
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