PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER
FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE
NAMES AS COMMAND LINE
Why is void main used?
what are enumerations in C
What does the file stdio.h contain?
Explain enumerated types.
What is operator precedence?
Why is c not oop?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
Can you tell me how to check whether a linked list is circular?
What is wrong in this statement? scanf(“%d”,whatnumber);
Tell us the use of fflush() function in c language?