what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / girish
1,1,3
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
Explain how do I determine whether a character is numeric, alphabetic, and so on?
how to create duplicate link list using C???
Which function in C can be used to append a string to another string?
What is static memory allocation? Explain
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
How pointers are declared?
Why do we use int main instead of void main in c?
What is sizeof array?
can anyone suggest some site name..where i can get some good data structure puzzles???
What is character constants?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is the difference between call by value and call by reference in c?
What's the difference between constant char *p and char * constant p?
write a program fibonacci series and palindrome program in c
How can you be sure that a program follows the ANSI C standard?