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
Is array name a pointer?
What is the difference between typeof(foo) and myFoo.GetType()?
What is c value paradox explain?
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
What are the different types of constants?
What is d scanf?
Write a program to print “hello world” without using semicolon?
Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.
What is the difference between NULL and NUL?