Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
No Answer is Posted For this Question
Be the First to Post Answer
What is sizeof in c?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.
3 Answers Google, Infosys, JTL, OpenFeel,
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
How to removing white spces in c programming only bu using loops
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
What is #line used for?
What are multibyte characters?
How can I call a function with an argument list built up at run time?
What is the use of sizeof () in c?
how to write palindrome program?
What is the difference between mpi and openmp?
write function to reverse char array ... without using second array