what is the full form of c language
Answer Posted / amk
combit language
| Is This Answer Correct ? | 3 Yes | 9 No |
Post New Answer View All Answers
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.
What is malloc calloc and realloc in c?
What is array of structure in c programming?
Explain a pre-processor and its advantages.
Explain how do you search data in a data file using random access method?
Explain the difference between strcpy() and memcpy() function?
How can I do peek and poke in c?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Write a program for finding factorial of a number.
What is break statement?
Why c is faster than c++?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
How do I send escape sequences to control a terminal or other device?
How do you use a 'Local Block'?
What is %d called in c?