What is the general form of a C program?
No Answer is Posted For this Question
Be the First to Post Answer
How to find a missed value, if you want to store 100 values in a 99 sized array?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
can u give me the good and very optimised code for a car racing game?
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.
Do you know the purpose of 'register' keyword?
Explain #pragma in C.
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
count the numbers between 100 and 300, that star with 2 and ends with 2
What are the features of c language?
What is a pragma?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
What is static function in c?