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
2
hope it helps you mate .....
Attachments:
Answered by
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:
- #include<stdio.h>
- int main(void)
- {
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