printing??

hi. i am using code blocks on a mac and im having trouble printing my program. when i press print it it doesnt print. and i want to make the font size bigger of the program, how do i do that? thanks
What do you mean it doesn't 'print'? I've never seen a print button on Code::Blocks.

You can usually change the size of the font by holding CTRL and using your mouse wheel.
Yeah, what do you mean by "print"?

And I think you can change the font size of the console somewhere in the configuration of your operating system.
Last edited on
i want to print out my program and im not sure how to do it. im not sure if there is a way to do it either but ive seen kids in my class have a print out of it. not sure but i think it has to do with the environment under settings.

i use a mac so can you tell me how to make the font bigger on a mac. thanks
So you want to print your program's output/code in paper? Just take a screenshot of it, connect the computer to a printer and print the image, or easier, copy the output to text and use some application to print it. If you want to print the code go to File->Print in Code::Blocks.

Or, print text in the screen? With iostream library you can use cout << "Text here";, with cstdlib (stdlib.h) library you can use printf("Text here");, etc.

Or print images in your program? It's a whole new area of programming. I can't say very much about this as I don't use graphic libraries for now.
Last edited on
thanks
Topic archived. No new replies allowed.