Explain what is the purpose of "extern" keyword in a function declaration?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is structuer?

4 Answers   LG Soft, Wipro,


define function

4 Answers   Assurgent, Sonata,


What is C++

4 Answers  


Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments

6 Answers   TCS,


What are c identifiers?

0 Answers  






What is the difference between macros and inline functions?

5 Answers   Global Edge, L&T,


Apart from dennis ritchie who the other person who contributed in design of c language.

0 Answers  


What are the types of arrays in c?

0 Answers  


What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }

3 Answers  


Identify the operators that is not used with pointer a. && b. # c. * d. >>

2 Answers  


logic for x=y^n

1 Answers   Delphi,


what will be the output of this program main() { int i=1; while (i<=10); { i++; } }

11 Answers  


Categories