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
What is formal argument?
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
Explain what is a const pointer?
write a program in c language to print your bio-data on the screen by using functions.
Why & is used in scanf in c?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
main() { printf("hello"); fork(); }
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
Write a C program to fill a rectangle using window scrolling
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none