home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 35 / hot35.iso / ficheros / LC / SIMPWN93.ZIP / SIMPWIN.ZIP / FUNG8.TXT < prev    next >
Text File  |  1997-08-18  |  240b  |  11 lines

  1.    Write_window() is like printf but has positioning parameters. 
  2.    
  3. Example:
  4.  
  5.    char name[20] = "bruce";
  6.    
  7.    write_window(3,5,"My name is %s",name);
  8.    
  9.    This will display 'My name is bruce' at 3,5 of the current window.
  10.  
  11.