Data Output printf and Putchar Example in C
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
Related Pages
Learn the concept first, then study the code:
- C Programs — Browse all C Programs.
- printf and scanf in C — Tutorial — formatted input and output.
- Printf And Scanf Example Program In C Programming — More in data input and output programs in c .
- Data Input and Output gets and puts Example Program In C — More in data input and output programs in c .