void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answers were Sorted based on User's Feedback
Explain what is the difference between functions getch() and getche()?
What are 'near' and 'far' pointers?
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
Explain how do you declare an array that will hold more than 64kb of data?
What is #include cctype?
what is the advantage of software development
code for bubble sort?
What is a sequential access file?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
How do you prevent buffer overflows in C?
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
What is ## preprocessor operator in c?