Which built-in library function can be used to match a patter from the string?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How can I read a directory in a C program?

2 Answers   Bright Outdoor, Wipro,


In scanf h is used for

4 Answers   BFL,


What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

0 Answers  


print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5

3 Answers   Winit,


What is a structure and why it is used?

0 Answers   Hexaware,






#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }

3 Answers   ADITI,


write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]

7 Answers   Calsoft,


biggest of two no's with out using if condition statement

5 Answers  


What is meant by realloc()?

0 Answers  


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


what does ‘segmentation violation’ mean?

1 Answers  


What is sizeof array?

0 Answers  


Categories