Computer Science, asked by poulami26, 5 months ago

Develop a C program to print any three lines of text lines.
.
please click a photo of the answer so that I can understand properly please ​

Answers

Answered by prabhleen643
2

hope it helps you mate .....

Attachments:
Answered by sushmaa1912
0

C program for print text is a three-step code.

Explanation:

  • Below is the list of steps (using an example) to write a C program to print three lines of text:
  1. #include<stdio.h>
  2. int main(void)
  3. {

              print(''good morning'');

              print(''welcome home'');

              print(''How are you?'');

         }

  • The above is a C code in three steps to print text lines.
Similar questions