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 diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is mean by data types in c?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is structure padding and packing in c?
Is it cc or c in a letter?
Explain void pointer?
What are different types of variables in c?
Where does the name "C" come from, anyway?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
Explain how can a program be made to print the line number where an error occurs?
What happens if a header file is included twice?
Define circular linked list.
I need a sort of an approximate strcmp routine?
main() { printf("hello"); fork(); }
Explain union. What are its advantages?