What is a sequential access file?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know the difference between exit() and _exit() function in c?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
how to find string length wihtout using c function?
give an example of type casting by a simple c program
Write a routine that prints out a 2-D array in spiral order!
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What is the use of ?
Explain spaghetti programming?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?