Why can arithmetic operations not be performed on void pointers?
No Answer is Posted For this Question
Be the First to Post Answer
How to access or modify the const variable in c ?
16 Answers HCL, HP,
When is an interface "good"?
Explain what is a pragma?
write a c program to store and print name,address,roll.no of a student using structures?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
How do you convert strings to numbers in C?
Explain the use of function toupper() with and example code?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
Write a C program to fill a rectangle using window scrolling
What is d'n in c?
What is the difference between array and pointer?
Calculate 1*2*3*____*n using recursive function??