User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:stdio.h:putchar

Table of Contents

putchar

    int putchar(int char); 

put a character into stdout

C Sourcecode Example

/* 
 * putchar example code
 * http://code-reference.com/c/stdio.h/putchar
 */
 
#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
 
int main( void )
{
  int c;
  c = 0; // ASCII Code a
 
  while (c < 255) { // count chars in a while loop
     putchar(c);
     c++;
  }
 
  putchar('\n');
  return 0;
}

output complete ASCII Table

Output

   ./putchar 
  
  
   
  123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~????????????????????????????????????????????????????????????????????????????????????????????????

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/stdio.h/putchar.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz