I have a function which accepts a pointer to an int. How
can I pass a constant like 5 to it?
Answer Posted / guest
You will have to declare a temporary variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does typedef struct mean?
What does. int *x[](); means ?
Where are some collections of useful code fragments and examples?
Explain what is wrong with this statement? Myname = ?robin?;
What is a 'null pointer assignment' error?
What is the difference between the = symbol and == symbol?
Why header files are used?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
When should a type cast not be used?
What are dangling pointers in c?
What is identifiers in c with examples?
Can include files be nested?
Function calling procedures? and their differences? Why should one go for Call by Reference?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What's the total generic pointer type?