Showing posts with the label c program spell bee contest

SPELL BEE CONTEST Given a pair of words (the first is the correct spelling and the second is the contestant’s spelling of the word) determine if the word is spelt correctly. The degree of correctness is as follows: CORRECT if it is an exact match ALMOST CORRECT if no more than 2 letters are wrong WRONG if 3 or more letters are wrong

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 PRINT MINIMUM NUMBER IN EACH ROW AND MAXIMUM NUMBER IN EACH COLUMN AND COMMON ELEMENTS IN THEM

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

C PROGRAM TO PRINT Nth PRIME NUMBER

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

Load More Posts That is All