What is the total generic pointer type?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the Difference between the New and Malloc keyword.
What is a constant?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
what is the difference between c and java?
What are 'near' and 'far' pointers?
void main() { int i=5; printf("%d",i+++++i); }
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
When should the register modifier be used? Does it really help?
what is pointer?
How can I determine whether a machines byte order is big-endian or little-endian?