What is extern c used for?


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

Post New Answer

More C Interview Questions

How can I find out how much free space is available on disk?

0 Answers  


4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.

1 Answers   Wipro,


which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;

5 Answers   Assurgent, TCS,


Write a code to remove duplicates in a string.

0 Answers   Expedia,


What is Dynamic Initialization.

3 Answers  






Explain how can I remove the trailing spaces from a string?

0 Answers  


What are dangling pointers? How are dangling pointers different from memory leaks?

1 Answers  


IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.

5 Answers   TCS,


Explain the difference between fopen() and freopen().

2 Answers  


What is the difference between text and binary i/o?

0 Answers  


#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?

4 Answers   Infosys,


write a C program to print the program itself ?!

16 Answers   TCS,


Categories