When can you use a pointer with a function?
No Answer is Posted For this Question
Be the First to Post Answer
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
What does emoji p mean?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
How can you access memory located at a certain address?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What does c mean?
Is return a keyword in c?
What does nil mean in c?
write a program to remove duplicate from an ordered char array? in c
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
What is difference between arrays and pointers?