Discover
Questions library
Collections library
Find online teacher
login
Discover
questions library
Find online teacher
login
Popular Searches:
if-else
class-diagram
flowchart
Polymorphism
Home
Questions
C programming
C programming quiz questions
Post A Question
Classifications:
C programming Assignments
C programming exam questions
C programming examples
C programming Interview questions
C programming MCQ Questions
C programming textbook solutions
quiz questions Categories:
Medicine quiz questions
Networks quiz questions
Java programming quiz questions
C++ programming quiz questions
c# programming quiz questions
Python programming quiz questions
Show Collections (1)
Show Questions (80)
C Programming Multiple Choice Questions And Answers
|
0
|
55
|
910
Write a C program to get the C version you are using
FayezHamida
2022-07-01
1 answers
372 Views
0 Likes
Guess the output #include int main() { int x = 1, y = 0, z = 3; x > y ? printf("%d", z) : return z; }
YasminRadwan26
2022-05-26
1 answers
318 Views
0 Likes
Find out the error #include struct emp { char name[20]; int age; }; int main() { emp int xx; int a; printf("%d\n", &a); return 0; }
YasminRadwan26
2022-05-26
1 answers
305 Views
0 Likes
How many times tutorial links are present
YasminRadwan26
2022-05-26
1 answers
314 Views
0 Likes
What is the output?#include int main() { int i = 0, j = 0; if (i && (j = i + 10)) //do something ; }
YasminRadwan26
2022-05-26
1 answers
334 Views
0 Likes
Assume the output #include int main() { printf("%p", main) getchar() return 0 }
YasminRadwan26
2022-05-26
1 answers
236 Views
0 Likes
Find out the Output int main() { char arr[5]="The tutoriallinks.com" printf("%s",arr) return 0 }
YasminRadwan26
2022-05-26
1 answers
224 Views
1 Likes
Find out the Output int main() { int a = 10.5; printf("%d",a); return 0; }
YasminRadwan26
2022-05-26
1 answers
328 Views
0 Likes
Find out the error #include int main() { display(); return 0; } void display() { printf("IndiaBIX.com"); }
YasminRadwan26
2022-05-26
1 answers
295 Views
0 Likes
What is the output? #include int main() { int i = 1; if (i++ && (i == 1)) printf("Yes\n"); else printf("No\n"); }
YasminRadwan26
2022-05-26
1 answers
307 Views
0 Likes
Find out the Output int fun(char *str1) { char *str2 = str1; while(*++str1); return (str1-str2); } int main() { char *str = "geeksforgeeks"; printf("%d", fun(str)); getchar(); return 0; }
YasminRadwan26
2022-05-26
1 answers
296 Views
0 Likes
C programming language by itself provides
YasminRadwan26
2022-05-26
1 answers
301 Views
0 Likes
We can use relational operators as
YasminRadwan26
2022-05-26
1 answers
341 Views
0 Likes
Show More