Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

Print a variable in a new window

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