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
being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
Why is c so powerful?
implement OR gate without using any bitwise operator.
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What is a const pointer in c?
Why c is called top down?
What are the different types of constants?
Explain bitwise shift operators?
how to build a exercise findig min number of e heap with list imlemented?
write a c program to add two integer numbers without using arithmetic operator +
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);