Predict the output of the below programs. Question 1 filter_none edit close play_arrow link brightness_4 code int main() { int c=5; printf("%d\n%d\n%d", c, c <<=… Read More
Category Archives: Program Output
Predict the output of below C programs. Question 1: c filter_none edit close play_arrow link brightness_4 code #include<stdio.h> int main() { int x = 5, p… Read More
Predict the output of below programs Question 1 filter_none edit close play_arrow link brightness_4 code int main() { int i = 0; while (i <=… Read More
Predict the output of below programs Question 1 filter_none edit close play_arrow link brightness_4 code int main() { unsigned int i=65000; while ( i++ !=… Read More
Predict the output of below programs Question 1 filter_none edit close play_arrow link brightness_4 code int main() { while(1){ if(printf("%d",printf("%d"))) break; else continue; } return… Read More
Predict the output of below programs Question 1 filter_none edit close play_arrow link brightness_4 code #include‹stdio.h› int main() { struct site { char name[] =… Read More
Predict the output of the below program. Question 1 filter_none edit close play_arrow link brightness_4 code #include <stdio.h> int main() { printf("%p", main); getchar(); return… Read More
Predict the output of below programs. Question 1 c filter_none edit close play_arrow link brightness_4 code #include<stdio.h> char *getString() { char str[] = "Will I be… Read More
Predict the output of below programs. Question 1 filter_none edit close play_arrow link brightness_4 code #include<stdio.h> int main() { int n; for(n = 7; n!=0;… Read More
Predict the output of the below program. filter_none edit close play_arrow link brightness_4 code int main() { int x = 5; int * const ptr… Read More
Predict the output of the below program filter_none edit close play_arrow link brightness_4 code #define square(x) x*x int main() { int x; x = 36/square(6);… Read More
Predict the output of below program filter_none edit close play_arrow link brightness_4 code #include<stdio.h> int main() { char *ptr = "geeksforgeeks"; printf("%c\n", *&*&*ptr); getchar();… Read More