Quiz 1 - C Language

C quiz with data types. control flow, method and programming skills


Restart the quiz

Question:

What is the correct output from the following code?

#include <stdio.h>
int main(int argc, char** argv)
{
   int x = 3;
   printf("%d", x++  +  ++x);
   return 1;
}

Answers:




© 2017 QuizBucket.org