What are the differences between Structures and Arrays?
No Answer is Posted For this Question
Be the First to Post Answer
What is a union?
Explain how can you tell whether a program was compiled using c versus c++?
do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
What is c token?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Is there any book to know about Basics of C Language?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
how many errors in c explain deply
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.