Can math operations be performed on a void pointer?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
what is the return type of printf
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
what is the definition of storage classes?
what are the languages used in c#?
Why void is used in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What are the Advantages of using macro
Can a variable be both static and volatile in c?
Can a pointer be null?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }