if function is declared as static in one source file, if I
would like to use the same function in some other source
file...is it possible....how ?
Answer Posted / lakshman
using function pointer in main.c which holds address of
static function in the same file. But function pointer can
be used in other files.
| Is This Answer Correct ? | 26 Yes | 5 No |
Post New Answer View All Answers
Explain union.
Why & is used in c?
How are strings stored in c?
Is c procedural or object oriented?
Why do we use stdio h and conio h?
What is dangling pointer in c?
What are the modifiers available in c programming language?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Can you please explain the difference between syntax vs logical error?
What are variables and it what way is it different from constants?
Write a program to show the change in position of a cursor using c
Can you write the algorithm for Queue?
Is array name a pointer?
Why is struct padding needed?
Define Spanning-Tree Protocol (STP)