main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Post New Answer View All Answers
Is javascript based on c?
Which function in C can be used to append a string to another string?
Are local variables initialized to zero by default in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is the purpose of sprintf?
What is main return c?
Write a program that accept anumber in words
Which are low level languages?
difference between Low, Middle, High Level languages in c ?
What are lookup tables in c?
Explain the advantages of using macro in c language?
Explain how do you convert strings to numbers in c?
What is a void pointer in c?
What is build process in c?