Can math operations be performed on a void pointer?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.

1 Answers  


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

3 Answers  


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);

1 Answers  


what is the definition of storage classes?

3 Answers   Wipro,


what are the languages used in c#?

3 Answers   Infosys,


Why void is used in c?

0 Answers  


List the difference between a 'copy constructor' and a 'assignment operator' in C?

0 Answers   Accenture,


What are the Advantages of using macro

0 Answers  


Can a variable be both static and volatile in c?

0 Answers  


Can a pointer be null?

0 Answers  


void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }

1 Answers  


Categories