Advertisement
Advertisement
C Quizzes, Questions & Answers
Recent C Quizzes
Questions: 10 | Attempts: 292 | Last updated: Mar 22, 2025
-
Sample QuestionPointer is a special kind of a variable which is used to store _______ of a variable
Questions: 35 | Attempts: 340 | Last updated: Sep 12, 2025
-
Sample QuestionDo while loop tests the condition at the End of the Loop.
Questions: 10 | Attempts: 2053 | Last updated: Sep 1, 2025
-
Sample QuestionPrint the output of this program void main() { int a, b, c, abc = 0; a = b = c = 40; if (c) { int abc; abc = a*b+c; } printf ("c = %d, abc = %d ", c, abc); }
Questions: 10 | Attempts: 932 | Last updated: Mar 18, 2025
-
Sample QuestionWhat will be the output of the following program? #include<stdio.h> int main() { char numbers[5][6] = {"Zero","One","Two","Three","Four"}; printf("%s is %c",&numbers[4][0],numbers[0][0]); return 0; }
Questions: 10 | Attempts: 378 | Last updated: Oct 16, 2025
-
Sample QuestionWhat are not qualifiers in C?
Questions: 10 | Attempts: 1690 | Last updated: Jul 23, 2025
-
Sample QuestionAnything that can change or be changed in an experiment are called ______________.
Questions: 10 | Attempts: 4207 | Last updated: Jun 17, 2025
-
Sample QuestionC language has been developed by?
Questions: 15 | Attempts: 789 | Last updated: Feb 21, 2025
-
Sample QuestionIf a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?
Questions: 40 | Attempts: 1712 | Last updated: Mar 21, 2025
-
Sample QuestionThe Expression, A=30*1000+2768 evaluates to ________________.
Questions: 11 | Attempts: 4876 | Last updated: Mar 20, 2025
-
Sample QuestionMy friend in his coding given as Move '001' TO REC-KEY EXEC CICS READ NEXT ... RIDFLD(REC-KEY) Do you think it is possible to skip some records with this command? END-EXEC
Advertisement