Tell about strtok & strstr functions

Answer Posted / shruti

The above answer is perfect...

Kudos..
well done..

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What will the preprocessor do for a program?

576


What is type qualifiers?

648


What is the meaning of 2d in c?

600


How would you rename a function in C?

608


What is clrscr in c?

662






What is the difference between the expression “++a” and “a++”?

642


How can I prevent another program from modifying part of a file that I am modifying?

604


How many bytes is a struct in c?

715


Explain the bubble sort algorithm.

632


Write a program that accept anumber in words

1242


How do I create a directory? How do I remove a directory (and its contents)?

596


any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above

622


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

905


What is the use of #include in c?

568


find out largest elemant of diagonalmatrix

1639