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
What is a double c?
Which type of language is c?
What are the general description for loop statement and available loop types in c?
Do you know pointer in c?
What is meant by type casting?
What is the difference between typedef struct and struct?
What is typeof in c?
What is the benefit of using an enum rather than a #define constant?
Is it acceptable to declare/define a variable in a c header?
What is string length in c?
What language is windows 1.0 written?
Describe newline escape sequence with a sample program?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Is struct oop?
what are bit fields in c?