Advertisement
Advertisement
Advertisement

C Quizzes, Questions & Answers

Top Trending Quizzes


C is a programming language which was developed by Dennis Ritchie. C language incorporates low-level access to memory, clean style and simple set of keywords which makes 'C' language a perfect system...

Questions: 10  |  Attempts: 11054   |  Last updated: Apr 21, 2023
  • Sample Question
    void main() { int const * p=5; printf("%d",++(*p)); }
    Radio Button
    Radio Button
    Radio Button
    Radio Button
    Radio Button

Dear Student, The Quiz consists of General MCQ on C Programming Language. Total 30 Questions Time Allocated : 20 Minutes . Happy Learning !! Team SHIVAM

Questions: 30  |  Attempts: 319   |  Last updated: Mar 22, 2023
  • Sample Question
    The return-type of “printf” is:
    Radio Button
    Radio Button
    Radio Button
    Radio Button

Do you think you know enough about security issues in C code? Can you think with the mind of a hacker? Test your knowledge with our interactive quiz! Check how much you know, share the results, and help your colleagues...

Questions: 5  |  Attempts: 276   |  Last updated: Mar 21, 2023
  • Sample Question
    This function is part of a program that is running on a 32-bit x86 system; the compiler does not change the order of variables on the stack.   void function(char *input) {     int i = 1;     char buffer[8];     int j = 2;     strcpy(buffer,input);     printf("%x %x %s\n",i,j,buffer); } What is the minimum length of a string – passed to the function through the input parameter – that can crash the application?
    Radio Button
    Radio Button
    Radio Button
    Radio Button
    Radio Button

CODE CHALLENGE @ 2k19 is a quiz designed to assess knowledge in C programming, covering topics like functions, structures, scope, and operators. It is ideal for learners looking to test their understanding of basic to...

Questions: 59  |  Attempts: 169   |  Last updated: Mar 16, 2023
  • Sample Question
     What will be the output of the following C code? #include <stdio.h> int main() { void foo(); printf("1 "); foo(); } void foo() { printf("2 "); }
    Radio Button
    Radio Button
    Radio Button
    Radio Button

Recent Quizzes

Advertisement