Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Point out the error in the program. #include<stdio.h> int main() { const int x; x=128; printf("%d\n", x); return 0; } ?->(Show Answer!)
1. Point out the error in the program. #include<stdio.h> int main() { const int x; x=128; printf("%d\n", x); return 0; }
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
A const variable has to be initialized when it is declared. later assigning the value to the const variable will result in an error "Cannot modify the const object". Hence Option B is correct