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

Post New Answer

More C Interview Questions

Subtract Two Number Without Using Subtraction Operator

0 Answers  


what is void pointer?

2 Answers  


Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }

4 Answers  


Why we write conio h in c?

0 Answers  


What is break statement?

0 Answers  






what is the use of #pragma pack, wer it is used?

2 Answers   Wipro,


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

0 Answers  


Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.

0 Answers   Amazon,


Explain what is the difference between #include and #include 'file' ?

0 Answers  


what is diffrence between string and character array?

1 Answers  


Explain the process of converting a Tree into a Binary Tree.

0 Answers   Ignou,


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


Categories