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 pointer ?
10 Answers Kernex Micro Systems,
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
Explain threaded binary trees?
What is the explanation for prototype function in c?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
1,1,5,17,61,217,?,?.
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
how can we print hellow world programme without using semicolon
Difference between pass by reference and pass by value?
Explain what are linked list?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }