what is diff b/w huge & far & near pointer??
Answer / mani
far pinters are of 32 bits n near pointers are of 16 bits
| Is This Answer Correct ? | 7 Yes | 0 No |
What is the difference between far and near in c?
What is advantage of pointer in c?
What is the right type to use for boolean values in c?
Is fortran faster than c?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Explain how can you tell whether a program was compiled using c versus c++?
what is the difference between declaration and definition of a variable or function ?
What language is lisp written in?
How can I increase the allowable number of simultaneously open files?
What is the explanation for the dangling pointer in c?
what is the difference between c and java?
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above