Answer Posted / naresh
main()
{
extern int iExtern;
iExtern = 20;
printf(“%d”,iExtern);
}
Why do we get linkage error for the above code
Is This Answer Correct ? | 14 Yes | 3 No |
Post New Answer View All Answers
Implement bit Array in C.
What is realloc in c?
State the difference between realloc and free.
Why is it that not all header files are declared in every C program?
What are dangling pointers? How are dangling pointers different from memory leaks?
Which is better between malloc and calloc?
How can I handle floating-point exceptions gracefully?
Why use int main instead of void main?
what will be the output for the following main() { printf("hi" "hello"); }
Write a program to implement queue.
How can I automatically locate a programs configuration files in the same directory as the executable?
What is volatile, register definition in C
What are the types of i/o functions?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is a buffer in c?