Search code examples
cwindowside

How can I see the output of my program in the Turbo C IDE?


How do I print #include<conio.h> in C

#include<stdio.h>
#include<conio.h>
void main()
{
printf("#include<conio.h>");

}

How to get the output as

#include<conio.h>

you have to put getch(); and press Ctrl+f9 instead of alt+f5


Solution

  • I don't think you need to do anything else. You have written the solution yourself. All you have to do is just Compile and Run......... :)