Monday 12 September 2016

C Program to Display Your Name

This is a C Program to Display Your Name using c programming.
I have used Code Blocks to build the program.
I also suggest you to use Code Blocks for C-Programming.
Here is a guide for beginners > How to use Code Blocks for C-Programs.

Code

//This will include the Standard Input and Output(stdio) Header File
#include<stdio.h>
 


//this is the main function from where the program execution starts 
int main()

{   

    //printf is a function which remains under stdio.h
    //printf is used print some texts
    printf("Satyadipan Maiti");
    

    return 0;
}


Output :

Satyadipan Maiti

Download the C-File




No comments:

Post a Comment