Write a c program for binary addition of two 8 bit numbers.
No Answer is Posted For this Question
Be the First to Post Answer
advantages and disadvantages of using Borland C++ / version 5.
Explain differences between alloc() and free()?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
What is a vector c++?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What is a map in c++?
write a program that takes two numbers from user that prints the smallest number
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
Explain one-definition rule (odr).
What are the advantages of using typedef in a program?
Why do we use setw in c++?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.