void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}

Answer Posted / akshay

442

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is malloc() function?

643


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

1858


Which type of language is c?

656


What header files do I need in order to define the standard library functions I use?

543


What is the use of a semicolon (;) at the end of every program statement?

782






Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

573


What is the purpose of the preprocessor directive error?

688


Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.

1731


What is the use of in c?

583


What is the usage of the pointer in c?

608


Write the syntax and purpose of a switch statement in C.

632


What is exit() function?

568


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1131


Is javascript based on c?

599


Explain what will the preprocessor do for a program?

607