What is pointers in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find biggest of 3 number without relational operator?
Write a program to generate random numbers in c?
program for reversing a selected line word by word when multiple lines are given without using strrev
How is a pointer variable declared?
What is the difference between #include <header file> and #include “header file”?
Tell us two differences between new () and malloc ()?
What are c header files?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
write a program to print data of 5 five students with structures?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
Explain the difference between structs and unions in c?
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