Arrays and String Handling Practical 3. sort the accepted string in ascnding order find smallest character from each word of accepted line....
HTML
Tech News
Ad
Arrays and string Handling Practical 2. Write a c program to display two matrix on screen and perforn the addition of two matrix and print ...
Arrays & string handling practical 1. Write a c program to Enter the Rollnumber and marks of 20 students using array and arrange accept...
Write a c program to print first 5 prime numbers #include <stdio.h> #include <conio.h> void main() { int n = 0, i = 1, j = 1...
Write a c program to generate following output. * * * * * * * * * * * * #include <stdio.h> #include <conio.h> void main(...
write a c program to generate following output. 1 2 3 4 5 6 7 8 9 10 #include <stdio.h> #include <conio.h> void main() { int i...
Write a c program to generate following output | c * programs * ** *** **** ***** #include <stdio.h> #include <conio.h> void ...
Write a c program to print the accepted number and its reverse number #include <stdio.h> #include <conio.h> void main() { ...
Write a c program to find that the accepted number is Negative, Positive or Zero. #include<stdio.h> #include<conio.h> void mai...
Write a C program to interchange two numbers #include<stdio.h> #include<conio.h> void main() { int a,b,temp; clrscr(); p...
Write a c program to Find out Area and Volume of sphere #include<stdio.h> #include<conio.h> void main() { int x; ...
C language Hello World pogram #include<stdio.h> #include<conio.h> main() { clrscr(); printf("Hello World!\n"); getc...