I print a string in a new window with this statements:
#include <stdio.h>
#include ”graphics.h”
int main(){
outtextxy(x, y, “hello world”);
return 0;
}
How can I print a variable in a new window in C?
I print a string in a new window with this statements:
#include <stdio.h>
#include ”graphics.h”
int main(){
outtextxy(x, y, “hello world”);
return 0;
}
How can I print a variable in a new window in C?
Comments
Post a Comment