Thread: Printing

  1. #1
    Unregistered
    Guest

    Arrow Printing

    Hi,

    How would I print text using Borland C++ or Turbo C++?

    Thank You

  2. #2
    Registered User moonwalker's Avatar
    Join Date
    Jul 2002
    Posts
    282

    print text ????

    printf("Text printed");


  3. #3
    Registered User moonwalker's Avatar
    Join Date
    Jul 2002
    Posts
    282

    here...

    Are you asking how to use the printer ?
    PHP Code:
    #include <stdio.h>

    main()
    {
        
    float f =2.0134;
        
        
    fprintf(stdprn"Mahurshi writes his first Printer program.\n\n");
        
    fprintf(stdprn"and now for some numbers:\n\n");
        
    fprintf(stdprn"The square of %f is %f"ff*f);
        
       
    fprintf(stdprn"\f"); 
        

    This thing prints from a printer.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C# Printing Problem
    By silverlight001 in forum C# Programming
    Replies: 0
    Last Post: 03-23-2009, 01:13 AM
  2. generic printing preferences dialog box
    By stanlvw in forum Windows Programming
    Replies: 8
    Last Post: 06-27-2008, 02:20 AM
  3. printing data to a file
    By coralreef in forum C Programming
    Replies: 3
    Last Post: 11-02-2006, 08:10 PM
  4. need help relating printing?
    By omarlodhi in forum Linux Programming
    Replies: 0
    Last Post: 03-03-2006, 04:46 AM
  5. Printing
    By Dual-Catfish in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 05-25-2002, 08:10 PM