Arrays & string handling practical 1. Write a c program to Enter the Rollnumber and marks of 20 students using array and arrange accept...
HTML
Tech News
Ad
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 print the accepted number and its reverse number #include <stdio.h> #include <conio.h> void main() { ...
Write a c program to find the sum of first 100 natural numbers #include<stdio.h> #include<conio.h> void main() { int i=0,sum...
Write a c program to find the sum of digits of accepted number #include<stdio.h> #include<conio.h> void main() { int r,no,sum...