Explain what are linked list?
No Answer is Posted For this Question
Be the First to Post Answer
how 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
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
how to write a program which adds two numbers without using semicolon in c
How can I read and write comma-delimited text?
multiple of 9 without useing +,* oprator
What does. int *x[](); means ?
pgm to find middle element of linklist(in efficent manner)
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
How would you rename a function in C?
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?