C++ Institute CLA-11-03 Question Answer
What happens if you try to compile and run this program?
#include
#include
int main (int argc, char *argv[]) {
int a = 0, b = 1, c;
c = a++ && b++;
printf("%d",b);
return 0;
}
Choose the right answer:
C++ Institute CLA-11-03 Question Answer
What happens if you try to compile and run this program?
#include
#include
int main (int argc, char *argv[]) {
int a = 0, b = 1, c;
c = a++ && b++;
printf("%d",b);
return 0;
}
Choose the right answer: