What are the different pointer models in c?
Answers were Sorted based on User's Feedback
Answer / sathish kumar
Hi All,
This is sathish. Upto my knowledge you have three types of
pointers in C. They are
1) Near
2) Far
3) Huge
Thanks & Regards
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gg
Dear Satish...
Can U explain in brief... please...
Thank You
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ashwin kumar
According to size of program in code area,data area and
stack area there are six type of memory model:
1. Tiny
2. Small (default)
3. Medium
4. Compact
5. Large
6. Huge
Note: - to change memory model (in turbo c) go to
Option->compiler->code generation.
| Is This Answer Correct ? | 0 Yes | 0 No |
NULL Pointer
Dangling Pointer
Generic Pointers
Wild Pointer
Complex Pointers
Near Pointer
Far Pointer
Huge Pointers
| Is This Answer Correct ? | 0 Yes | 0 No |
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What are logical errors and how does it differ from syntax errors?
Compare interpreters and compilers.
what is bit rate & baud rate? plz give wave forms
How can you draw circles in C?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
what do you mean by inline function in C?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
What is the difference between CV and Resume ?
main() {int a=200*200/100; printf("%d",a); }
write a program wch produces its own source code aas its output?