FILE *fp1,*fp2;
fp1=fopen("one","w")
fp2=fopen("one","w")
fputc('A',fp1)
fputc('B',fp2)
fclose(fp1)
fclose(fp2)}
a.error b. c. d.
No Answer is Posted For this Question
Be the First to Post Answer
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
What are file streams?
What is the difference between realloc() and free()
how is the examination pattern?
What are disadvantages of C language.
What is Memory leakage ?
What header files do I need in order to define the standard library functions I use?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
What is the difference between mpi and openmp?
A C E G H +B D F A I ------------ E F G H D
Why does everyone say not to use scanf? What should I use instead?
What does do in c?