Explain in detail how strset (string handling function works )pls explain it with an example.
1 11321dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
1 4344how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
5 10199how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
1 8961Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
4 11875
Is it cc or c in a letter?
What is a lvalue
what are non standard function in c
What does == mean in texting?
What is int main () in c?
what will be maximum number of comparisons when number of elements are given?
How do I get an accurate error status return from system on ms-dos?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What are pointers? What are different types of pointers?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
How do I use strcmp?
How to set file pointer to beginning c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
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.