What is the advantage of a random access file?
No Answer is Posted For this Question
Be the First to Post Answer
What is selection sort in c?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
How do you determine a file’s attributes?
How to create struct variables?
hat is a pointer?
what r callback function?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is the difference between union and structure in c?
What is #line in c?
sir i got 146 correct question & i have also the advantage of height so will they consider my marks as 146+3=149.can any body tell me how they consider my height marks.
Describe how arrays can be passed to a user defined function
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);