Explain this code.
#include <stdio.h>
void f1(int *k)
{
*k = *k + 10;
}
main ( ){
int i;
i = 0;
printf (" The value of i before call %d \n", i);
f1 (&i);
printf (" The value of i after call %d \n", i);
}
Answer Posted / pooja agarwal
10
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What are the application of void data type in c?
How do you determine the length of a string value that was stored in a variable?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Tell us something about keyword 'auto'.
What is pointer to pointer in c?
What is unsigned int in c?
What is the best way of making my program efficient?
Why do we need volatile in c?
what is use of malloc and calloc?
Explain how do you determine the length of a string value that was stored in a variable?
What is the explanation for prototype function in c?
What is the significance of scope resolution operator?
How can I discover how many arguments a function was actually called with?
Is file a keyword in c?