-
Linking socket++ classes to my application
Hi,Iam very much new to programming and C++please help meI have an application that uses socket++ classes on Unix (AIX) environmentI have included #include in two of my .cpp filesand I have socket++ source in my temp directorywhen iam trying to compile my application using the makefile, the error shown is The #include file "sockinet.h" is not found.I don't know how to make my application to use socket++...
-
-
Length Conversion Program
Write a program that will read in a length in feet and inches and will output the equivalent length in meters and centimeter. Use at least three functions: one for input, one or more for calculating, and one for output. Include a loop that lets the user repeat this computation for new input values until the user says he wants to end the program. There are meter in a foot, 100 centimeters in a meter,...
-
What is the advantage of function overloading according to users point of view?
I know that function name is same. but each time we are writing code for each function.then in which way it is advantageous than normal function.
-
Using Templates
What is the disadvantage of using too many templates?
-
C++ File Stream
What is the concept of file stream in C++? How is a file opened and closed in C++?
-
Reversing Linked List
How to reverse a linked list using only one pointer?
-
Spiral Structure
Write a program for generating a spiral structure of N number.For example: If N= 4 then the structure will be as follow-1 24 3 If N=5, then the structure will be as follow- 1 25 4 3 If N=9, then the structure will be as follow-7 8 96 1 25 4 3 If N=15, then the structure will be as follow-7 8 9 106 1 2 115 4 3 12 15 14 13 If N=18, then the structure will be as follow- 7 8 9 10 6...
-
Constant, Volatile and Static Function
What is the use of constant function, volatile function & static function (in programming & real life)? How do they differ from one another?
-
Memory Resize Function
Lets say contiguous memory is not available for vector's elements and it is occupied by something else. How does the resize function of vector allocate memory to be contiguous allocation?
-
Exception Handling
Explain the exception handling features of C++ program with a suitable example
-
Find Type of Triangle
Write a C++ program to find the type of a triangle by reading three sides of a triangle.
-
GOD of Two Numbers
Write a C++ program to find the GOD of two numbers
-
Smart Pointers
What is Smart Pointer in C++?
-
Operators
Which of the following operators cannot be overloaded?Choose one answer. a. [ ] b. == c. . d. =
-
Classes
Who can access private data in a class?Choose one answer. a. members of the class b. friends of the class c. everyone d. A and B
-
Classes
Given the following class, what is syntactically wrong with the implementation of the display function?class Rational{public: Rational( ); Rational(int numer, int denom); Rational(int whole); int getNumerator( ); int getDenominator( ); friend void display(ostream& out, const Rational& value);private: int numerator; int denominator;};void display(ostream& out, const Rational& value){ out
-
Static Constant Function
Consider a static const function y() that is private member function of a class Y. What do the static and const mean? When could this function be used?
-
C Coding question on running time program
/*assume contents are sorted*/Public static intbinarySearch(int x,int a[]){int low=0; 0(1)int high=a.length-1; 0(1)int mid; 0(1)while(low>x;while(x!=99){n++; 0(1)sum+=x; 0( n/x)cin>>x;}mean - sum/n;what is the running time?Please help me understand it. The websites are not that helpful to me. Please. Please if you're not that busy can you please answer it with explanations?:) :) :) THANK YOU!!
-
Command routing in MDI
What is command routing in MDI
C++ Interview Questions
Ans