Coding Practice: Write a program in C to display some texts on computer screen

in WORLD OF XPILAR5 years ago (edited)

coding.jpg

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:  
Loading...

Coin Marketplace

STEEM 0.04
TRX 0.32
JST 0.082
BTC 60727.29
ETH 1556.40
USDT 1.00
SBD 0.47