Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Point out the compile time error in the program given below. #include<stdio.h> int main() { int x; x=100; return 0; } ?->(Show Answer!)
1. Point out the compile time error in the program given below. #include<stdio.h> int main() { int x; x=100; return 0; }
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.02 pm
While reading the code there is no error, but upon running the program having an unitialised variable can cause the program to crash (Null pointer assignment).