What are Storage Classes in C ?
Answer Posted / sowmi
There are 4 types of storage class namely such as
auto,extern,static,register,and also type def
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain 'bit masking'?
Why is structure important for a child?
What does c mean before a date?
How can I delete a file?
How do I copy files?
What is the difference between printf and scanf in c?
The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.
Can we access array using pointer in c language?
What is structure in c language?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What are variables and it what way is it different from constants?
What are the 3 types of structures?
What is c preprocessor mean?
What should malloc(0) do?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.