How to learn C language in easy way



WAP TO PRINT “HELLO”
 #include<stdio.h> //Header file(standard input output )
main()   // Main function
{
printf("HELLO");
return 0;
}

Output:-Hello


                                                                                                                          NEXT

No comments:

Post a Comment