Wednesday, December 14, 2022

How to print "Hello World" in C language.

 This is my first blog and this is about how to print "Hello World" in C language.


Source Code :-


#include<stdio.h>
int main() {
    printf("Hello World");
    return 0;
}

No comments:

Post a Comment

Selection Sort Using C programming.

Selection sort is a simple and efficient sorting algorithm that works by repeatedly selecting the smallest (or largest) element from the un...