Answer Posted / manish soni
period operator is a main operator bcoz it is used to
access the strutre member .
s.n1
s.n2
....like that.
| Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
How can you return multiple values from a function?
What is ## preprocessor operator in c?
Explain indirection?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
int far *near * p; means
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.
I heard that you have to include stdio.h before calling printf. Why?
int i=10; printf("%d %d %d", i, i=20, i);
What are the loops in c?
What are the preprocessor categories?
What is the difference between #include
Explain how can I right-justify a string?
Are there any problems with performing mathematical operations on different variable types?
write a c program in such a way that if we enter the today date the output should be next day's date.
What are operators in c?