I have a function which accepts, and is supposed to
initialize,a pointer, but the pointer in the caller remains
unchanged.
Answer / guest
The called function probably altered only the passed copy of
the pointer.
Is This Answer Correct ? | 2 Yes | 0 No |
Why do we use static in c?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
What is the difference between far and near ?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Why is c called c not d or e?
why we need function pointers?
can v write main() { main(); } Is it true?
What is meant by gets in c?
what is meant by the "equivalence of pointers and arrays" in C?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What is getche() function?
Explain output of printf("Hello World"-'A'+'B'); ?