What are Storage Classes in C ?
CTS, HP, IBM, Maharaja Whiteline, Tamil Nadu Open University TNOU, TATA, TCS, Wipro,
32 127516What are advantages and disadvantages of recursive calling ?
College School Exams Tests, Evolving Systems, HP, Jyoti Ltd, Sage, Wipro,
12 103740
What is the sizeof () operator?
What are the functions to open and close the file in c language?
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.
What is the difference between array and structure in c?
Write a program to reverse a given number in c language?
Write a program to print fibonacci series using recursion?
Why do we use pointer to pointer in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What are the two forms of #include directive?
Why #include is used in c language?
Explain null pointer.
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is the purpose of main( ) in c language?