C Program to Sort set of strings in alphabetical order
#include<stdio.h> #include<string.h> int main(){ int i,j,count; char str[25][25],temp[25]; puts(“How many strings u are going to enter?: “); scanf(“%d”,&count); puts(“Enter Strings
Read more#include<stdio.h> #include<string.h> int main(){ int i,j,count; char str[25][25],temp[25]; puts(“How many strings u are going to enter?: “); scanf(“%d”,&count); puts(“Enter Strings
Read moreAn algorithm to check prime number A number that is divisible only by itself and 1, is prime number Example
Read moreProblem Statement : If a five-digit number is input through the keyboard, write a program to reverse the number. Answer:
Read more