InterviewSolution
Saved Bookmarks
| 1. |
#include <stdio.h>int main(){int i = 3;printf("%d", (++i)++);return 0;}What is the output of the above program?(A) 3(B) 4(C) 5(D) Compile-time error |
| Answer» | |