What is a sequential access file?
No Answer is Posted For this Question
Be the First to Post Answer
1 What is a Data Structure?
Is printf a keyword?
what are far pointers?
What are runtime error?
ABCDCBA ABC CBA AB BA A A
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
Why calloc is better than malloc?
Do pointers store the address of value or the actual value of a variable?
WHAT IS ABSTRACT DATA TYPE
When should the register modifier be used? Does it really help?
What is the size of empty structure in c?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1