What is the output of this C code int main() { const int a; a = 32; printf("a is %d", a); return 0; }
What is the output of this C code int main() { int var = 010; printf("%d", var); }
Does this compile without error int main() { for (int k = 0; k < 10; k++); return 0; }