Why can arithmetic operations not be performed on void pointers?
No Answer is Posted For this Question
Be the First to Post Answer
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
Is there any book to know about Basics of C Language?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
Explain what is the benefit of using const for declaring constants?
Explain spaghetti programming?
What is non linear data structure in c?
Explain modulus operator. What are the restrictions of a modulus operator?
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
Can you write the function prototype, definition and mention the other requirements.
What does c mean before a date?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?