main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / vara
4 5 5 and garbagevalue
| Is This Answer Correct ? | 12 Yes | 4 No |
Post New Answer View All Answers
What does & mean in scanf?
What are identifiers c?
What is a dynamic array in c?
When is the “void” keyword used in a function?
What is the best style for code layout in c?
Explain modulus operator. What are the restrictions of a modulus operator?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
what type of questions arrive in interview over c programming?
Tell us bitwise shift operators?
Explain bit masking in c?
Why do we need functions in c?
What is difference between constant pointer and constant variable?
Is there anything like an ifdef for typedefs?