3
Taking the following code as an example:
#include <stdio.h>
int main(void)
{
printf("Hello world");
return 0;
}
Where "Hello World" will be written in row 1 and column 1 of the console. How do I change this, for example, write it in row 3, column 5?
Just to add, it is necessary to give include in windows. h to be able to use this function.
– Jonathan Barcela
It worked, vlw :D
– Jonathan Barcela