What would be the output of the following C program?
#include<stdio.h> main() { int x = 1; float y = x>>2; printf( "%f", y ); }
Answers
Answered by
1
Answer:
What will be the output of the program? # include<stdio.h> #define MAN(x, y) ((x)>(y)) ? ( x):(y); int main() { int i=10, j=5, k=0; k = MAN(++ i, .
Similar questions