What will be the output of the following C code? 1. #include <stdio.h> 2. int main() 3. { 4. int i = 0; 5. int j = i++ + i; 6. printf("%d\n", j); 7. } code example
Example: #include int main() { int x=(20||40)&&(10); printf("%d",x); return 0; }
#include <stdio.h> int main() { int x=(20||40)&&(10); printf("%d",x); return 0; }