What is the advantage of a random access file?
No Answer is Posted For this Question
Be the First to Post Answer
State two uses of pointers in C?
What the different types of arrays in c?
What are c preprocessors?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
How does free() know explain how much memory to release?
What is the main differences between C and Embedded C?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
How can you tell whether two strings are the same?
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
Write a code to generate a series where the next element is the sum of last k terms.
How can I increase the allowable number of simultaneously open files?
triangle number finding program...