20 August 2018

C Program to print HELLO WORLD

A simple program to start coding C language.Also to understand the syntax of C we first write and execute "Hello World" program.
//Program to print HELLO WORLD
#include<stdio.h>
int main()
    {
    printf("\n HELLO WORLD \n");
 return 0;
    }

No comments:

Post a Comment

To convert from Upper case to lowercase(A to a)

//converting from Upper to lower(A to a) import java.util.*; class case { public static void main(String args[]) { System.out.pr...