Comment on the behaviour of the following C code?
#include <stdio.h>
int main()
{
int i = 2;
i = i++ + i;
printf("%d\n", i);
}
#include <stdio.h>
int main()
{
int i = 2;
i = i++ + i;
printf("%d\n", i);
}A. = operator is not a sequence point
B. ++ operator may return value with or without side effects
C. it can be evaluated as (i++)+i or i+(++i)
D. = operator is a sequence point
Answer: Option A
Related Questions on C Fundamentals
What is the primary purpose of a function prototype in C?
A. Declare a variable
B. Declare a function
C. Define a function
D. Assign a value
What is the correct syntax for declaring a variable in C?
A. int variable_name;
B. variable_name = 5;
C. variable_name int;
D. int = variable_name;

Join The Discussion