Write a program to compute the similarity between two strings
- The program should get the two strings as input
- Then it will output one single number which is the percentage of similarity between the two strings
No Answer is Posted For this Question
Be the First to Post Answer
How can I prevent another program from modifying part of a file that I am modifying?
how to find that no is int or float?
What is an anonymous union and where to apply that ?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
Do pointers store the address of value or the actual value of a variable?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What are signals in C?
What is meant by type specifiers?
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
Why is struct padding needed?
What does the message "warning: macro replacement within a string literal" mean?
write an interactive program to generate the divisors of a given integer.