C Programming

Which symbol terminates a C statement
How to write a single line comment
Which arthematic operator returns the integer reminder of the result of dividing 1st operand with 2nd operand
Is this syntax correct: scanf("%d",input);
What is the result : -6 % 4
How many main functions can you have in a program
Which data type should the variable storing 45.78 have
Predict the output for the below program
#include <stdio.h>
int main()
{
    int I = 0;
    switch (i)
    {
        case '0': printf("For");
                break;
        case '1': printf("You");
                break;
        default: printf("For You");
    }
    return 0;
}
Predict the output
#include <stdio.h>
int I = 1;
int main()
{
    if (i);
    else
        printf("Ëlse");
    return 0;
}
{"name":"C Programming", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"Which symbol terminates a C statement, how to write a single line comment, which arthematic operator returns the integer reminder of the result of dividing 1st operand with 2nd operand","img":"https://www.quiz-maker.com/3012/images/ogquiz.png"}
Make your own Survey
- it's free to start.