8035897601:AAHhRzKYkq1Of4QkhaKSRRnwhrnZiPR9c_8#2
8035897601:AAHhRzKYkq1Of4QkhaKSRRnwhrnZiPR9c_8#2alitala10111k wants to merge 1 commit intoPanditSiddharth:npmfrom
Conversation
|
Create any compiler and run on your own compiler any code |
|
https://forum.infinityfree.com/t/greetings/111376?u=aliblack |
|
@ArGWg_bot |
|
8035897601:AAGGIh0CSbgBF7wPzHIs3S9SL0FjSfiIHqI |
|
bot.py |
|
@ArGWg_bot |
|
6944197527:AAEAstbznk2kGcuIJ_KPorfde4J630BLyA0 |
|
@Godalalitala_bot |
Yes but many tries with conio.h |
https://github.com/user-attachments/assets/7d7ec125-a7a6-4d9b-9e04-fc9cbd42b03a
Added Support for conio.h c library
In @CodeCompiler_Bot
But conio.h header file is useless in standard c
I added this because many students
Directly paste his code from turbo c ide
Which uses conio.h files methods
However those methods are useless in any other ide
Here is sample program with conio.h:
#include <stdio.h>
#include <conio.h>
int main(){
clrscr();
printf("%d", 5);
getch();
return 0;
}
Without conio.h:
#include <stdio.h>
int main(){
printf("%d", 5);
return 0;
}
Both will run successfully with same output