Can a void pointer point to a function?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
write a program to add two numbers of any size.....(remember any size)
what does ‘#include’ mean?
Why are all header files not declared in every c program?
When can a far pointer be used?
Why doesnt this code work?
Is r written in c?
Explain what is the benefit of using enum to declare a constant?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What is null pointer constant?
what is the difference between definition and declaration? give me some examples.
How many bytes are occupied by near, far and huge pointers (dos)?