I was having complications with the site and was not able to save my game.
Copy and paste the following questions and answers into the generator here.
C Programming Quiz
What is the syntax to print a statement?*printf
What does i++ mean in terms of math?*i+1=i
A loop that looks like this ( x = 0; x < 10; x++ ) is a ____loop.*for
What does stdio.h stand for?*standard input output
If you are going to make an integer variable name num1 what would that look
like?*int num1
The keyword used to trasnfer control from a function back to the calling
function is*return
True or False - Bit fields CANNOT be used in union.*False
True or False - The first argument to be supplied at command-line must always be
count of total argument.*False
Which header file should you include, if you are going to develop a function,
which can accept variable number of arguments?*stdarg.h
Yes or No - In a function two return statements should never occur.*No
Yes or No - It is necessary that a header files should have a .h extension.*No