Use CTRL+F to find the desired program
- Write a program in C++ to input roll no, name and marks and display entered details and average marks
- Write a program in C++ to find Addition, Subtraction, Multiplication, Division, Remainder and Average of two floating numbers
- Write a program in C++ to find the Square and Cube of any number
- Write a program in C++ to swap two variables without using third variable
- Write a program in C++ to check the number is positive or negative using Conditional Operator
- Write a program in C++ to find area of circle
- Write a program in C++ to find area of triangle
- Write a program in C++ to find simple interest
- Write a program in C++ to enter marks of 5 subjects and then calculate percentage
a. Percentage > 75 then print “Distinction”
b. Percentage > 60 print “First Class”
c. Percentage > 50 print “Second Class”
d. Percentage > 35 print “Pass”
e. Otherwise print “Fail” - Write a program in C++ to check whether the entered year is leap year or not
- Write a program in C++ to print prime numbers from 1 to 100
- Write a program in C++ to check whether the entered number if prime number or not
- Write a program in C++ to find Maximum of 3 number using Conditional Operator
- Write a program in C++ to find Maximum of 3 number using Nested If Else
- Write a program in C++ to find addition, subtraction, multiplication or division of 2 numbers entered by user using switch case
- Write a program in C++ to find out Area of Triangle, Rectangle or Circle using If else (Must be menu driven)
- Write a program in C++ to find factorial of entered number
- Write a program in C++ to print Fibonacci series upto number entered by user
- Write a program to print table of entered number
- Write a program to find max digit in entered number (e.g. in 1563 max digit is 6)
- Write a program to find summation of digits of any number (e.g. in 1563 summation is 1+5+6+3=14)
- Write a program to find summation of first and last digit of a number (e.g. in 1365 summation is 1+5=6)
- Write a program to print following pyramids
*
**
***
****1
12
123
12341
22
333
4444*
**
***
****1
21
321
4321
54321*
* *
* * *
* * * *
* * * * *1
1 2
1 2 3
1 2 3 4
1 2 3 4 51
2 2
3 3 3
4 4 4 4
5 5 5 5 5*
**
***
****
***
**
** * * * * *
* * * * *
* * * *
* * *
* *
** * * * * * * *
* * * * * *
* * * *
* *
*
* *
* * *
* * * *
* * *
* *
* - Write a program to enter 6 elements in array and print square of every element
- Write a program to enter 10 elements in array and print the number of even and odd elements in it
- Write a program to enter 10 elements in array and print summation and average of elements
- Write a program to print max of 10 elements of array
- Write a program to sort array in ascending order
- Write a program to sort array in descending order
- Write a program to find second smallest element of array
- Write a program to print Matrix using 2D array
- Write a program for addition and subtraction 2 Matrix using 2D array
- Write a program for multiplication of 2 Matrix using 2D array
- Write a program to find Max element in 2D array (Matrix)
- Write a program to convert string from uppercase to lowercase and vice versa
- Write a program to count the number of words without using string function
- Write a program to copy a string’s value into another without using string function
- Write a program to reverse the string without using string function
- Write a program to check whether the entered string is Palindrome or not
- Write a program to concatenate 2 strings without using string function
- Write a program to find addition, subtraction, multiplication and division of 2 numbers using Function
- Write a program to find square and cube of any number using Function
- Write a program to find factorial of any number using Function
- Write a program to print Fibonacci Series using Function
- Write a program to find min and max element of an array using Function
- Write a program to sort the array using Function
- Write a program to print the string in reverse order using Function
- Write a program to for factorial using Recursive Function
- Write a program to check whether the entered number if Palindrome or not using Recursive Function
- Write a program of Structure employee that provides following information: emp_no, emp_name, emp_age, emp_designation, emp_salary, emp_address
- Write a program of Structure employee that provides following information for 5 employees: emp_no, emp_name, emp_age, emp_designation, emp_salary, emp_address
- Write a program of structure student having roll_no and marks of 3 subjects of 5 students, then print the total marks and percentage of every student
- Write a program to make addition of 2 numbers using pointer
- Write a program to swap two variables using pointer
- Write a program to concatenate 2 strings using pointer
- Write a program to sort array using pointer and function
- Write a program to read data from file
- Write a program to write data into a file
- Write a program to append data into already existing file
- Write a program to calculate square of any number using Macro
- Write a program to assign any constant value (e.g. pi=3.14) to Macro and use it to find area of circle