Answer Posted / nipa
using pointer some facility is there
1.. we reduce length and complexity of a program
2.. increase speed of execution of program
3.. it can capable to handling data table
4.. to access variable which is defined outside the function
5 .. handle character string
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Explain function?
How do you convert strings to numbers in C?
How many parameters should a function have?
How can you increase the size of a statically allocated array?
Are negative numbers true in c?
Write a program to reverse a linked list 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.
What is data structure in c language?
In c programming language, how many parameters can be passed to a function ?
Can true be a variable name in c?
What are valid operations on pointers?
Explain the use of fflush() function?
What is a structural principle?
what are the 10 different models of writing an addition program in C language?
Describe the difference between = and == symbols in c programming?