Skip to main content

Data Output printf and Putchar Example in C

1 min read
Share:
On this page (6sections)

About this program

This is an example program in **data input and output programs in c **. Read the concept first: printf and scanf in C, then study the code and output below.

Definition for printf and putchar

  • In C Programming,printf function to output a formatted string.
  • putchar function to output a Single character.Writes a character to the standard output (stdout).

Syntax for printf and putchar()

printf(const char *format, ...);
putchar(character/character variable);

Example Program Data Output In C (printf and putchar)

/* Example Program For Data Output printf and putchar Example In C Programming Language
  little drops @ thiyagaraaj.com
  Coded By:THIYAGARAAJ MP       */
// Header Files
#include<stdio.h>
#include<conio.h>

//Main Function
int main()
{
	//Printf Standard Ouput Statement
	printf("Data Output Using Printf\n");

	// Print Single Character
	putchar('a');
	// Wait For Output Screen (Not working in gcc compiler, please remove it. In gcc compiler)
	getch();

	//Main Function return Statemen
	return 0;
}

Sample Output:

Data Output Using Printf

a

Learn the concept first, then study the code:

Related Tutorials

Search tutorials