Answer Posted / keerthana
Dennis Ritche and kenin...
| Is This Answer Correct ? | 20 Yes | 7 No |
Post New Answer View All Answers
Explain how can you avoid including a header more than once?
What are the 4 types of organizational structures?
What is the sizeof () a pointer?
What is struct node in c?
What is static and auto variables in c?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Why can arithmetic operations not be performed on void pointers?
Explain the meaning of keyword 'extern' in a function declaration.
What is data structure in c language?
What is getch() function?
What is malloc and calloc?
What is the data segment that is followed by c?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
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