Advertisement
Advertisement
Advertisement

12th Grade C Quizzes, Questions & Answers

Spark curiosity and test your child’s 12th grade C knowledge with our engaging quizzes! Read more

Top Trending C Quizzes


Coders Challenge Group A (Round 1) tests participants on their knowledge of C programming. Questions cover pointers, arrays, functions, and basic syntax. This quiz is ideal for assessing foundational programming skills and...

Questions: 60  |  Attempts: 203   |  Last updated: Mar 19, 2023
  • Sample Question 1
    What is the meaning of the following declaration? int(*p[5])();
    Radio Button
    Radio Button
    Radio Button
    Radio Button
  • Sample Question 2
    What is the output of this program?      #include    using namespace std;    int main()    {         int arr[] = {4, 5, 6, 7};         int *p = (arr + 1);         cout << *arr + 9;         return 0;    }
    Radio Button
    Radio Button
    Radio Button
    Radio Button
  • Sample Question 3
    . int main() { int row[20],i,sum=0; int *p=row; for(i=0;i<20;i++) *(p+i)=1; for(i=0;i<20;i+=sizeof(int)) sum+=*(p+i); printf("sum=%d\n",sum); }
    Radio Button
    Radio Button
    Radio Button
    Radio Button
Advertisement