main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / mani
4 5 5
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is structure data type in c?
Explain how to reverse singly link list.
What is define c?
Is c++ based on c?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What is the maximum length of an identifier?
Can you think of a logic behind the game minesweeper.
What is the process to generate random numbers in c programming language?
How does normalization of huge pointer works?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What 'lex' does?
Explain what is the difference between text files and binary files?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is gets() function?
What is a pointer in c plus plus?