Taking the following code as an example:
#include <stdio.h>
int main(void)
{
printf("Hello world");
return 0;
}
Where "Hello World" will be written on line 1 and column 1 of the console. How do I change this, for example, type it in line 3, column 5?