AshMit Academy
What does the following program print?int main() { int x = 0; if (x = 7) { printf("True"); } else { printf("False"); } return 0;}
9 months ago | [YT] | 1
AshMit Academy
What does the following program print?
int main() {
int x = 0;
if (x = 7) {
printf("True");
} else {
printf("False");
}
return 0;
}
9 months ago | [YT] | 1