Discover
MCQ library
Find online teacher
login
Discover
MCQ library
Find online teacher
login
Popular searches:
Home
MCQs
C programming
C programming Solved MCQs
New mcq
Show collections (15)
Show MCQs (321)
C Programming Language MCQs
0
|
0
|
0
C Arrays MCQs
9
|
0
|
0
C Functions MCQs
10
|
0
|
0
C Strings MCQs
10
|
0
|
0
C File Handling MCQs
11
|
0
|
0
C Preprocessor MCQs
12
|
0
|
0
C Pointers MCQs
12
|
0
|
0
C Structures and Union MCQs
12
|
0
|
0
C Control Statements MCQs
13
|
0
|
0
Show More
What will be output of following program ? #includeint main() { int a = 10;void *p = &a;int *ptr = p;printf("%u",*ptr);return 0; }
sarahatata
2022-11-12
C programming
1 answers
42 Views
0 Likes
Choose a correct C Statement
sarahatata
2022-11-12
C programming
1 answers
45 Views
0 Likes
Macro flowchart is also called as
sarahatata
2022-11-12
C programming
1 answers
36 Views
0 Likes
What is the output of C Program.?int main() { int a=5; while(a >= 3); { printf("RABBIT\n"); break; } printf("GREEN"); return 0; }
sarahatata
2022-11-12
C programming
1 answers
40 Views
0 Likes
What is the output of C Program.? int main() { int a=32; do { printf("%d ", a); a++; if(a > 35) break; }while(1); return 0; }
sarahatata
2022-11-12
C programming
1 answers
44 Views
0 Likes
What is the way to suddenly come out of or Quit any Loop in C Language.?
sarahatata
2022-11-12
C programming
1 answers
45 Views
0 Likes
What is the output of C Program.?
sarahatata
2022-11-12
C programming
1 answers
40 Views
0 Likes
What is the result after execution of the following code if a is 10, b is 5, and c is 10?
sarahatata
2022-11-12
C programming
1 answers
62 Views
0 Likes
What will the result of num1 variable after execution of the following statements?int j = 1, num1 = 4; while (++j <= 10) { num1++; }
sarahatata
2022-11-12
C programming
1 answers
31 Views
0 Likes
Show More