How to solve this problem of code? Such file directive no found | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

How to solve this problem of code? Such file directive no found

#include <stdio.h> #include<graphics.h> #include<dos.h> #include<stdlib.h> #include<conio.h> int main() { int d=DETECT,m,err; initgraph(&d,&m,""); err=graphresult(); if(err!==grOk) { printf("Graph error %s",grapherrormsg(err)); } while(!kbhit) { delay(100); settextstyle(rand()%20,rand()%2,rand()%16); setcolor(rand()%100); outtextxy(rand()%1000,rand()%400,"ROHIT"); } return 0; closegraph(); }

9th Jan 2021, 2:42 PM
Rohit Maurya
Rohit Maurya - avatar
3 Respostas
+ 5
There's no solution for this problem. The only way to get the code to run is to use ancient turbo compiler. No modern compiler supports turbo libraries, things are done differently these days.
9th Jan 2021, 3:05 PM
Ipang
+ 1
Rohit Maurya Maybe one of this suits your needs, https://en.m.wikipedia.org/wiki/List_of_platform-independent_GUI_libraries DM isn't working BTW, I can't reply your message.
9th Jan 2021, 4:09 PM
Ipang
0
Thanks but it's showing fatal error
9th Jan 2021, 4:03 PM
Rohit Maurya
Rohit Maurya - avatar