void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answers were Sorted based on User's Feedback
Answer / sachin
ans :11
how?
-> i++ => i=i+1 => i=6;
-> ++i => i=i =>i=5(first assign the value);
i=i+1;
so i++ + ++i=6 + 5=11 i.e.ans
| Is This Answer Correct ? | 3 Yes | 31 No |
When was c language developed?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is the sizeof () operator?
HOW DO YOU HANDLE EXCEPTIONS IN C?
what do u mean by Direct access files? then can u explain about Direct Access Files?
write function to reverse char array ... without using second array
how logic is used
what is d pitfalls of registers variables
Explain the process of converting a Tree into a Binary Tree.