Answer Posted / beesani
A pointer is a data type whose value refers directly to
another value stored elsewhere in the computer memory using
its address.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the default value of local and global variables in c?
Can you apply link and association interchangeably?
Does * p ++ increment p or what it points to?
What is the function of multilevel pointer in c?
How does struct work in c?
What are the types of c language?
What is hash table in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
How can I make it pause before closing the program output window?
Why do we use pointer to pointer in c?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
How can you allocate arrays or structures bigger than 64K?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Why main is not a keyword in c?