#How to change the size of the text so that the result is large?

19 messages · Page 1 of 1 (latest)

scenic nebula
#
#include<stdio.h>

int main(){
    printf("Hello world !!");
}

oblique lynxBOT
#

When your question is answered use !solved to mark the question as resolved.

Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.

languid glade
#

how is this related to C ?

deep magnet
#

With console output?
Or is it the intent that you will be using some graphics framework?

deep magnet
#

Then change the font size of your console program.
But you cannot do that from within your C program.

scenic nebula
#

ah this means it's impossible

deep magnet
#

You can of course redirect the output of your program to a text file and open that with notepad or similar.

scenic nebula
#

So if in the terminal the text result becomes large there is no ?

deep magnet
#

All the text written to the console is of the same size.
Whether that text is written by some terminal command, you on your keyboard, or your C program that writes to it.

#

There are some tricks by which you can change the colour of the text, but I don't know these because I have never used them.
They are called "escape sequences".

scenic nebula
deep magnet
scenic nebula
#

What is this for?

scenic nebula
scenic nebula
#

!solved