Answer Posted / sumalatha
Pointer is nothing but it addresses the value.
| Is This Answer Correct ? | 25 Yes | 6 No |
Post New Answer View All Answers
What is int main () in c?
What is the size of enum in bytes?
Explain what is the difference between #include and #include 'file' ?
Explain the meaning of keyword 'extern' in a function declaration.
What is difference between far and near pointers?
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?
What is declaration and definition in c?
what is use of malloc and calloc?
Explain what is the difference between functions abs() and fabs()?
What is the best way to comment out a section of code that contains comments?
What are header files? What are their uses?
How do I swap bytes?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What are types of preprocessor in c?
What is an auto keyword in c?