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
Why isn't any of this standardized in c? Any real program has to do some of these things.
which one is highest Priority in c? a)=,b)+,c)++,d)==
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
How can you avoid including a header more than once?
explain what are pointers?
Explain a pre-processor and its advantages.
How does selection sort work in c?
Where in memory are my variables stored?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Write a C program to find the smallest of three integers, without using any of the comparision operators.