Why can't I perform arithmetic on a void* pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is the scope of static variables in c language?
difference between malloc and calloc
How are portions of a program disabled in demo versions?
Can a variable be both constant and volatile?
What is pointer in c?
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
What is main function in c?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
What functions are used in dynamic memory allocation in c?
what is default constructor?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }