A character flag or control mechanism that delineates one data item from another
a) variable
b) constant
c) delimiter
d) call by reference
No Answer is Posted For this Question
Be the First to Post Answer
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
How many parameters should a function have?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
How can you tell whether a program was compiled using c versus c++?
Where are the auto variables stored?
What is sizeof c?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
Can stdout be forced to print somewhere other than the screen?