-
Constructors Programmatic
How do you pass parameters to super class ?
-
Adding user from c program to Mysql.
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
-
Inverse of matrix
Program to find inverse of nth order square matrix?(c++)
-
-
Size
c class base
{
public:
virtual void display()
{
cout
-
-
-
-
Number in words
Write a program that takes an integer and displays the words number of that value. For example,
10->ten
121->one hundred twenty one -
Flowchart
an electricity board charges the following rates to domestic users to discourage large consumption of energy:
for the first 100 units - 10 paise per unit
for next 200 units - 20 paisa per unit
beyond 300 units - 30 paisa per unit . if the total cost is more than 10 OMR then an additional surcharge of 15% is added.draw the flowchart and write the algorithm to calculate the... -
C++ Program to output the sum of positive numbers
WAP to output the sum of positive numbers, sum of negative numbers, sum of even numbers,
sum of odd numbers from a list of numbers entered by the user. The list terminates when the
number entered is zero. -
Use of OOPs in C++
What is the use of object oriented system?
-
Array in Function
Write C++ program tell the user
Press 1 to change Row to Row and change (using Function ) output like that :
1 1 1
2 2 2
3 3 3
and press 2 to change Row to Col and change (using function) output like that :
1 2 3
1 2 3
1 2 3
and press 0 to End the ProgramWhat will be the Output?
What will be the result of the following expressions when A = 6, B = 7 and C = 8?
option 1 = D = A + C % B or
option 2 = D = A + B * 5 - C
Ans