what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / 123ghouse@gmail.com
3,2,2;
| Is This Answer Correct ? | 21 Yes | 8 No |
Post New Answer View All Answers
What are data types in c language?
What is identifiers in c with examples?
Explain what is the difference between the expression '++a' and 'a++'?
What is spaghetti programming?
How many bytes is a struct in c?
i got 75% in all semester am i eligible for your company
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Which is better malloc or calloc?
What is void main () in c?
Why should I use standard library functions instead of writing my own?
int far *near * p; means
Write a c program to demonstrate character and string constants?
What is array of structure in c programming?
What is c mainly used for?
Differentiate between declaring a variable and defining a variable?