void main()
{
int i=5;
printf("%d",i+++++i);
}
Post New Answer View All Answers
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
If errno contains a nonzero number, is there an error?
State the difference between x3 and x[3].
How can I prevent another program from modifying part of a file that I am modifying?
Should I learn c before c++?
What is nested structure with example?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is pointers in c with example?
Write a program to swap two numbers without using third variable in c?
Why c is known as a mother language?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is build process in c?
What is gets() function?