Answer Posted / karthik
linkage error occurs when the library files included in
program are not present in default directory you added while
installing compiler.. set environment settings and change
directory.... you will not get linkage errors..
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
Do you know the difference between exit() and _exit() function in c?
Explain what does the format %10.2 mean when included in a printf statement?
Explain can static variables be declared in a header file?
What is function prototype in c with example?
What is static identifier?
What is #ifdef ? What is its application?
What is difference between main and void main?
In a byte, what is the maximum decimal number that you can accommodate?
how to make a scientific calculater ?
Explain what is the purpose of "extern" keyword in a function declaration?
What are the 5 types of inheritance in c ++?
List some of the static data structures in C?
What is const keyword in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain modulus operator. What are the restrictions of a modulus operator?