A program to print one line of text using C Programming Language

C Programming Language / Fundamentals of C Language

5792

  • printf() and scanf() functions are inbuilt library functions in C programming language which are available in C library by default. This function is declared and related macros are defined in “stdio.h” which is a header file in C language.
  • We have to include “stdio.h” file as shown in below C program to make use of these printf() and scanf() library functions in C language.

Program:

#include"stdio.h"
void main()
{
/* printing begins */
printf("I see, I remember \n");
/* printing ends */
}

Output:

I see, I remember
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.