+ 3
What will be the output for this code in a compiler and interpreter
#include<stdio.h> int main() { int i =100; printf("%d %d %d " ,i++,i++,i++); return 0; }
1 Answer
#include<stdio.h> int main() { int i =100; printf("%d %d %d " ,i++,i++,i++); return 0; }