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
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
......... :)