how many errors in c explain deply
No Answer is Posted For this Question
Be the First to Post Answer
How was c created?
What are the advantages of using linked list for tree construction?
Why structure is used in c?
what is data structure
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What are the types of unary operators?
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,
What are the concepts introduced in OOPs?
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); }
Why is the code below functioning. According to me it MUST NOT.