how to connect with oracle 9i with server in socket program in
c/c++
No Answer is Posted For this Question
Be the First to Post Answer
Write syntax to define friend functions in C++.
What is the use of bit fields in structure declaration?
what are the iterator and generic algorithms.
What are the differences between a struct in C and in C++?
What are virtual functions and what is its use?
What is an Object/Instance?
template<class T, class X> class Obj { T my_t; X my_x; public: Obj(T t, X x) : my_t(t), my_x(x) { } }; Referring to the sample code above, which one of the following is a valid conversion operator for the type T? a) T operator T () { return my_t; } b) T operator(T) const { return my_t; } c) operator(T) { return my_t; } d) T operator T (const Obj &obj) { return obj.my_t; } e) operator T () const { return my_t; }
What is else syntax in c++?
How can an improvement in the quality of software be done by try/catch/throw?
What are the types of STL containers?
Consider a c++ template funtion template<class T> T& Add(T a, T b){return a+b ;} if this function is called as T c = Add("SAM", "SUNG"); what will happen? What is the problem in the template declaration/ How to solve the problem.
Problem 6: Area of a trapezoid can be calculated by the following formula: A=(b1 b2)×h2 where b1 and b2 are the parallel sides or the bases and h is length of height Write a C code of this program