what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / sandeep
1,1,2
| Is This Answer Correct ? | 5 Yes | 15 No |
Post New Answer View All Answers
When should the register modifier be used? Does it really help?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Explain About fork()?
What is volatile, register definition in C
What is a static function in c?
What are header files? What are their uses?
Explain enumerated types in c language?
What is a string?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Are global variables static in c?
How will you write a code for accessing the length of an array without assigning it to another variable?
Why is structure important for a child?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
in iso what are the common technological language?
What is the use of structure padding in c?