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
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.