PROGRAM TO FIND THE GIVEN NUMBER IS PERFECT FACTORIAL OF A INTEGER. IF YOU GIVE A NUMBER IT WILL BE THE INTEGER WHICH IS FACTOR… Read more
PROGRAM TO FIND THE GIVEN NUMBER IS PERFECT FACTORIAL OF A INTEGER. IF YOU GIVE A NUMBER IT WILL BE THE INTEGER WHICH IS FACTOR… Read more
GIVEN AN ARRAY OF SIZE N , FIND ALL ELEMENTS THAT APPEAR MORE THAN N/K TIMES. EX: ENTER THE NO.OF DIGITS: 7 ENTER THE VALUE OF K… Read more
PROGRAM TO FIND PALINDROME STRING EX: enter the string malayalam malayam is a palindrome. PROGRAM: #include <stdio.h> in… Read more
Given a pair of words (the first is the correct spelling and the second is the contestant’s spelling of the word) determine if … Read more
C PROGRAM TO TRANSPOSE THE GIVEN MATRIX: EX: enter the no. of rows and columns of matrix 3 3 enter the elements in the matrix … Read more
C PROGRAM , TO SUM OF TWO DIAGONALS AND SUM OF ELEMENTS OF EACH DIAGONAL. EX: enter the rows and columns 3 3 enter the element… Read more
HI!!FRIENDS c program to find minimum number in each row and maximum number in each column and common elements in them. EX : n= … Read more
HI! FRIENDS TO FIND PRIME NUMBERS UPTO N: CODE: #include<stdio.h> int main() { int i,j,n,count; printf("Enter n"… Read more
HI ! FRIENDS TO FIND NTH PRIME NUMBER: CODE: #include <stdio.h> int main() { int i,j,c=0,n,range=32767; int a[100]… Read more
HI ! FRIENDS TO PRINT ROTATION OF THE NUMBER AND PRINT BIGGEST AMOUNG THEM: #include<stdio.h> int main() { int r,q,s,n,… Read more