program to find error in linklist.(i.e find whether any
node point wrongly to previous nodes instead of next node)
No Answer is Posted For this Question
Be the First to Post Answer
Explain what standard functions are available to manipulate strings?
What does the error 'Null Pointer Assignment' mean and what causes this error?
Explain modulus operator.
How can you read a directory in a C program?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
How pointers are declared?
Why is c so important?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
can we implement multi-threads in c.
Convert the following expression to postfix and prefix (A+B) * (D-C)
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is wrong with this statement? Myname = 'robin';