Page 1 of 1

Font Size in C

Posted: Tue Oct 15, 2013 12:43 pm
by Fahim Shahriar
How can I change font size in C ?

Re: Font Size in C

Posted: Fri Oct 18, 2013 8:40 pm
by *Mahi*
Do you want to change the font size in standard output of C? If so, then I can say that it is not possible. C/C++ standard output is plain text (the type of text you use in notepad/gedit), so you can't change the font of the output. But if you are using some kind of graphical user interface (GUI) then it might be possible using those specifications.

Also, you can change the command line font size inside the program (assuming you're using Windows) but I don't think you're wanting to know that one, as you won't be able to have more than one font size in a single program.

Re: Font Size in C

Posted: Sat Nov 09, 2013 10:55 am
by shayanjameel08
As far as I know the text on the console is a fixed size.