if p is a string contained in a string?


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

Post New Answer

More C Interview Questions

WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?

28 Answers   3D PLM, Code Studio, Deltech, IBM,


Write a program in C to reverse a number by recursive function?

1 Answers  


What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }

3 Answers  


How many types of operators are there in c?

0 Answers  


What is c method?

0 Answers  






in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?

2 Answers   NetApp,


#define f(x) main() { printf("\n%d",f(2+2)); }

5 Answers  


How to write a code for reverse of string without using string functions?

0 Answers   TCS,


Write a program to swap two numbers without using third variable?

0 Answers  


How can I manipulate individual bits?

0 Answers  


What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?

1 Answers  


What is Heap?

3 Answers  


Categories