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;
}
Selection sort is a simple and efficient sorting algorithm that works by repeatedly selecting the smallest (or largest) element from the un...
No comments:
Post a Comment