what is pointer ? what is the use of pointer?
Answer Posted / sri harsha
pointer is lock to house.house is any data.mainly for
saving space,security we will use pointers.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is #define in c?
List a few unconditional control statement in c.
what type of questions arrive in interview over c programming?
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.
How reliable are floating-point comparisons?
What is an endless loop?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Why & is used in scanf in c?
can any one tel me wt is the question pattern for NIC exam
How will you delete a node in DLL?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What does node * mean?
how logic is used
How can you convert integers to binary or hexadecimal?
What is the difference between scanf and fscanf?