Home / Programs / A program to print one line of text using C Programming Language
🚀 Programming Example

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

👁 5,706 Views
💻 Practical Program
📘 Step Learning
A program to print one line of text using C Programming Language

📌 Information & Algorithm

  • 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 Code

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

🖥 Program Output

I see, I remember
Press any key to continue . . .
                            
📚 Learning Subject

Master Programming Through Practical Examples

Improve your coding logic, problem-solving skills and programming confidence by practicing real-world examples with explanations.

🎯 How to learn from this example

First understand the algorithm carefully. Then study the program line-by-line and compare it with the output. Finally, review the explanation section to strengthen your logic and programming understanding.

🔥 Practice suggestion

Rewrite the program without looking at the code. Modify values, conditions or logic and run it again. This helps improve confidence and strengthens coding skills much faster.