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
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
What’s a signal? Explain what do I use signals for?
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
Why does this code crash?
The file stdio.h, what does it contain?
What are pointers? What are different types of pointers?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
Explain what are multibyte characters?
What is the -> in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above