What is the difference between near, far and huge pointers?
No Answer is Posted For this Question
Be the First to Post Answer
What is getch?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
How can I ensure that integer arithmetic doesnt overflow?
implement OR gate without using any bitwise operator.
How are structure passing and returning implemented?
i want to job in your company, so how it will be possible.
Explain what is page thrashing?
Explain a pre-processor and its advantages.
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
how to impliment 2 or more stacks in a single dimensional array ?
1. Write a program to reverse every second word in a given sentence.