Explain in detail how strset (string handling function works )pls explain it with an example.
1 11244dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
1 4254how 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 10013how 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 8836Is 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 11689
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What is assignment operator?
Why c is called free form language?
What is int main () in c?
What is meant by initialization and how we initialize a variable?
Explain the use of keyword 'register' with respect to variables.
using only #include
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is the correct code to have following output in c using nested for loop?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
plz let me know how to become a telecom protocol tester. thank you.
Is python a c language?
What is wrong in this statement?
What is the symbol indicated the c-preprocessor?
Why can't I perform arithmetic on a void* pointer?