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
Is fortran still used today?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
how to write a bubble sort program without using temporary variable?
Explain how to reverse singly link list.
char p="data"; printf(p);
What are the advantages of using Unions?
What is union and structure?
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
What is the difference between int main and void main?
When is a “switch” statement preferable over an “if” statement?
Explain what are binary trees?