main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / sanjay kumar
Undefined behaviour
| Is This Answer Correct ? | 7 Yes | 21 No |
Post New Answer View All Answers
Why we use stdio h in c?
difference between object file and executable file
I have a varargs function which accepts a float parameter?
Write a program to use switch statement.
can we implement multi-threads in c.
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
Can a local variable be volatile in c?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What does s c mean on snapchat?
Are comments included during the compilation stage and placed in the EXE file as well?
explain how do you use macro?
Are the variables argc and argv are always local to main?
What are the 5 types of inheritance in c ++?
What is the role of && operator in a program code?