main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / ajay karanam
4554202496
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
What is memcpy() function?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is difference between function overloading and operator overloading?
What does 3 periods mean in texting?
List some applications of c programming language?
What are the types of type qualifiers in c?
What is main return c?
What is the use of #define preprocessor in c?
What is scanf () in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Compare and contrast compilers from interpreters.
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
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Lists the benefits of c programming language?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;