Discover
Questions library
Collections library
Find online teacher
login
Discover
questions library
Find online teacher
login
Popular Searches:
if-else
class-diagram
Polymorphism
flowchart
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
|
976
Write a C program to get the C version you are using
FayezHamida
2022-07-01
1 answers
395 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
342 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
329 Views
0 Likes
How many times tutorial links are present
YasminRadwan26
2022-05-26
1 answers
336 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
361 Views
0 Likes
Assume the output #include int main() { printf("%p", main) getchar() return 0 }
YasminRadwan26
2022-05-26
1 answers
250 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
241 Views
1 Likes
Find out the Output int main() { int a = 10.5; printf("%d",a); return 0; }
YasminRadwan26
2022-05-26
1 answers
354 Views
0 Likes
Find out the error #include int main() { display(); return 0; } void display() { printf("IndiaBIX.com"); }
YasminRadwan26
2022-05-26
1 answers
318 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
332 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
319 Views
0 Likes
C programming language by itself provides
YasminRadwan26
2022-05-26
1 answers
325 Views
0 Likes
We can use relational operators as
YasminRadwan26
2022-05-26
1 answers
364 Views
0 Likes
Show More