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
Questions
Study lists
Yasmin Questions
5728 Questions
Which Keyword is used to prevent any changes in the value of the variable
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
600
C variable cannot start with a
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
624
Find out the Output int main() { printf("\new_c_question\by"); printf("\rgeeksforgeeks"); getchar(); return 0; }
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
493
Can we pass a variable argument list to a function at run-time?
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
630
No of keywords in C
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
623
Guess the output void main() { char a = 'a'; int x = (a % 10)++; printf("%d\n", x); }
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
568
Assume the output #include int main() { int x = 10, *y, **z; y = &x; z = &y; printf("%d %d %d", *y, **z, *(*z)); return 0; }
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
646
Pick up the false statement
C programming
2022-05-26
Answers
30
Question
40
Followers
30
1
1
583
Find out the error #include #include int main() { void display(char *s, int num1, int num2, ...); display("Hello", 4, 2, 12.5, 13.5, 14.5, 44.0); return 0; } void display(char *s, int num1, int num2, ...) { double c; char s; va_list ptr; va_start(ptr, s); c = va_arg(ptr, double); printf("%f", c); }
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
751
Tick the statement which is not supported by C
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
562
enum types are processed by
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
615
Guess the output int main() { int a = 5; int b = 10; { int a = 2; a++; b++; } printf("%d %d", a, b); return 0; }
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
622
Which of the following is not a data types
C programming
2022-05-26
Answers
30
Question
40
Followers
30
0
1
624
Total:
5728
Previous
284
285
286
287
288
Next
Go