Friday, July 27, 2018

Hello World

This is my first program in c language.

#include<stdio.h>

int main()
{
    printf("Hello World!");
    return 0;
}

Outpot:

No comments:

Post a Comment

C program for find square value

This is an example of how to find square value of a number using function.  #include<stdio.h> float square ( float x ); int ma...