Computer Science, asked by abhiroy22, 9 months ago

Predict output for the following code.
#include<stdio.h>
int maino
int x= 10;
printf("%d, %d %d\n", X = 40,X >= 10, x <= 10);
return 0;​

Answers

Answered by pavithranatarajan855
2

Answer:

It will result error.because c programming is case sensitive .The capital X not declared but here used.

In main function we have close and open the { }   main() must be like this

If these  are corrected then result will be 40 1 1

Explanation:

Similar questions