Program 01 compute the area of a circle the user must enter


PROGRAM 01Compute the area of a circle. The user must enter the radius of the circle. Use the following formula for area A = 3.14 R2

PROGRAME  02 Write a program that will solve for the power dissipation of a resistor when the voltage across the resistor and the current in the resistor are known. The relationship for power dissipation is: P=I x R
Where
P = Power dissipated
I = resistor current.
V= resistor voltage. 

PROGRAME 03 Write a program that calculates the memory size of variable of different data type?

PROGRAM  04 Develop the program that will convert the temperature from degree Celsius to  degree Fahrenheit. User input the temperature in Fahrenheit. The relation is 1) Develop the program that will convert the temperature from degree Celsius to degree Fahrenheit. User input the temperature in Fahrenheit. The relation is F= (5/9)*C - 32

ASSIGNMENT WORK OF LAB. 03
PROGRAM # 01:. Run the following program step-by- step using "F8 key" and see the output on the output window. Observe that how the escape sequence works. 

PROGRAM #02;Write a program which calculates the roots of Quadratic equation.
Where
X1= (-b+(b*b- 4*a*c) / (2*a)
X2= (-b -(b*b- 4*a*c) / (2*a) 

PROGRAM #03
(a) Execute the following code step-by- step using "F8 key" and observe how the integer variables are declared, initialized and modified in the program. 

Program 4 Are the following expression are true or false.

Program 5:Rewrite the following statement using the unary operator. Also write a program; using modulus operator.

(i) a = a + 1

(ii) a = a – 1

(iii) b + = 1

(iv) b - = 1

PROGRAM. 02 Write a prog. That prints out the larger of two numbers entered from the keyboard. Use a function to do the actual comparison of the two numbers. Pass the two numbers to the function as arguments, & have the function return the answer with return().

PROGRAM 3: (a). State the advantage of creating your own header file. Explain how you may call your header file from a c++ program.

(b). Write a program to make your own a header file name mystuff.h in which the function of addition, subtraction, multiplication, division is included & then write a program that uses the same header file & performs the function accordingly.

PROGRAM. 01: Write Functions to evaluate:

a) sinh-1 x = ln( x + ((x2+1) )

b) cosh-1 x = ln( x + ((x2+1) )

PROGRAM. 02:Write a program that contains macro, that evaluate the volume of the sphere Where v= 4/3(( * r * r * r))

PROGRAM. 03:Write a program, that overload the Sub (subtraction) function?

PROGRAM. 01 Write a program, to calculate the average of the marks of 10 students?

PROGRAM. 02 Write a program to find the maximum and minimum value in array?

PROGRAM. 03 Write a program that will add the two matrix of the same order?

PROGRAM. 04 Write a program to find the smallest of a one dimensional array. Declare &

initialize the array in the main () & pass the array to a function which returns the smallest elements of the array. Also find the size of array in the main () & in the function to which array is passed.

PROGRAM 1What will be the output of the following program.

PROGRAM 2:Write a program that returns three value from the function.

QUESTION 3:What is different between the near and far pointer.

QUESTION 4:What mathematical operation that can be performed on the pointers.

QUESTION 5:

int i , j;

int *p = &i, *q;

p= &j;

What will be the output of the following :

(i) &*&i

(ii) *&*&j

(iii) **&p

PROGRAM 6:If

int arr[] = { 2, 39, 14,36};

int *ptr = arr;

write a program to study the difference between

++*ptr , *ptr++, (*ptr)++, ++ptr, ++*ptr++.

PROGRAM 7: Study the following code & make changes wherever necessary. Also study the scope resolution

(::) operator & try to understand how variables are access when they are declared globally &

when they are declared locally.

Solution Preview :

Prepared by a verified Expert
Programming Languages: Program 01 compute the area of a circle the user must enter
Reference No:- TGS01473026

Now Priced at $60 (50% Discount)

Recommended (94%)

Rated (4.6/5)