Answer Posted / chanti
strchr()
it is the function which we use in string() while we r
using characters in it.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Difference between macros and inline functions? Can a function be forced as inline?
Why static is used in c?
There seem to be a few missing operators ..
What are enumerated types?
What should malloc(0) do?
What is the total generic pointer type?
Explain how do you list files in a directory?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Write a program to print all permutations of a given string.
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Why functions are used in c?
Define the scope of static variables.
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
How do you define a string?