What are valid operations on pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Write a simple program to find the size of different basic data types in C.
What are header files in c?
What are nested functions in c?
How can I access an I o board directly?
what will happen if you free a pointer twice after allocating memory dynamically ?
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
What is assignment operator?
What are the key features of C?
Write a program for finding factorial of a number.
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
int i=10; printf("%d %d %d", i, i=20, i);
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory