I had recently installed the Bloodshed Dev C++ software in my pc having Dell
Inspiron N5010 64 bit processor but when i am compiling a program its compiled
but when i need to run the program to see the output it is not showing
anything.Any help is greatly helped for me...
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I had recently installed the Bloodshed Dev C++ software in my pc having Dell
Inspiron N5010 64 bit processor but when i am compiling a program its compiled
but when i need to run the program to see the output it is not showing
anything.Any help is greatly helped for me...
Try this
If you write C
write before main() function
include<stdlib.h>
before return 0 of main() function write
system("pause");
If you write C++
write before main() function
include<cstdlib>
before return 0 of main() function write
system("pause");
Try clicking view, then floating report window. A floating report window will
pop up.
Disregard my last comment, I thought you were talking about something else.