Explain the meaning of keyword 'extern' in a function declaration.


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

Post New Answer

More C Interview Questions

enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?

4 Answers   TCS,


#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


which one is better structure or union?(other than the space occupied )

2 Answers  


Is c call by value?

0 Answers  


how to build a exercise findig min number of e heap with list imlemented?

0 Answers  






to find the program of matrix multiplication using arrays

6 Answers   Bhel,


What is #define?

0 Answers  


Is c still used in 2019?

1 Answers  


What is information technology.

1 Answers  


How does free() know how many bytes to free?

8 Answers  


Can we change the value of static variable in c?

0 Answers  


write a program to display the numbers having digit 9 in the given range from 1 to 100

1 Answers  


Categories