a single linked list consists of nodes a to z .print the
nodes in reverse order from z to a using recursion
No Answer is Posted For this Question
Be the First to Post Answer
Why n++ execute faster than n+1 ?
Simplify the program segment if X = B then C ← true else C ← false
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
what is inline function?
What is header file in c?
What is typedf?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Write a programe print the sum of series 0,1,2,.....10
Differentiate between functions getch() and getche().
Give the Output : * * * * * * * * * *
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?