Home

Easy to Learn C program code for beginners

My Latest Posts


  • C program to print wellcome message.
    /*Print welcome message*/#include<stdio.h>void main(){    char name[25];    printf(“Enter your name:”);    scanf(“%s”,name);    printf(“Welcome %s”,name);} Output: Enter your name:AmitWelcome Amit