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 the difference between postfix and prefix unary increment operators?
c program to arrange digits in a no in ascending and descending order
what is use of malloc and calloc?
What is the use of ?: Operator?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Explain the Difference between the New and Malloc keyword.
Why main is used in c?
What is the usage of the pointer in c?
Differentiate between the = symbol and == symbol?
how to write a bubble sort program without using temporary variable?
How can you find the day of the week given the date?