What would be the output of the following program? main() { extern int fun ( float ); int a; a = fun ( 3. 14 ); printf ("%d", a); } int fun ( aa ) float aa ; { return ( (int) aa ); }
Correct Answer
Error occurs because we have mixed the ANSI prototype with K & R style of function definition When we use ANSI prototype for a function and pass a float to the function it is promoted to a double When the function accepts this double into a float a type mismatch occurs hence the error The remedy for this error could be to define the function as : int fun (float aa) { }
More questions
1. In the relational model, relationships between relations or tables are created by using:
Correct Answer: Object Repository means not a collection of objects it's a common repository for all the people (testing, developers) for seeing all the data in single login for example QA wants to see 5 testers works then he goes to each person login and see the data It's very difficult job for this we can use Object Repository
Correct Answer: The OSI Model is used as a reference model The primary reason the OSI model was created was so that different networks could inter-operate Hence, different networks could communicate