Coding Practice: Write a program in C to display some texts on computer screen
Problem: Write a program in C to display following texts on computer screen
Hello, welcome.
It's my first programming in C.
I am very much enjoying to learn C.
Thank You.
===============END===============
Code
/*Write a program in C to display some texts on computer screen
Hello, welcome.
It's my first programming in C.
I am very much enjoying to learn C.
Thank You.
===============END=============== */
//Programmed by Phantom
#include <stdio.h>
int main()
{
printf("Hello, welcome.\n");
printf("It's my first programming in C.\n");
printf("I am very much enjoying to learn C.\n");
printf("Thank You.\n\n");
printf("===============END===============");
return 0;
}
Result
Hello, welcome.
It's my first programming in C.
I am very much enjoying to learn C.
Thank You.
===============END===============
Sort: Trending
Loading...