c++ projects

Write a C++ program in which user enter his NTS and FSc marks and your program will help student in selection of university.

Write a C++ program in which user enter his NTS and FSc marks and your program will help student in selection of university.

Program in which user enter his NTS and FSc marks and your program will help student in selection of university.   Object: Write a C++ program in which user enter his NTS and FSc marks and your program will help student in selection of university. Based on these marks Student will be allocated a seat …

Write a C++ program in which user enter his NTS and FSc marks and your program will help student in selection of university. Read More »

Using function, write a complete program that prints your name 10 times. The Function can take no arguments and should not return any value

Using function, write program that prints your name 10 times. The Function can take no arguments and should not return any value

Using function, write a complete program that prints your name 10 times Object: Using function, write a complete program that prints your name 10 times. The Function can take no arguments and should not return any value. C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> using namespace std; void nam(); void main() { …

Using function, write program that prints your name 10 times. The Function can take no arguments and should not return any value Read More »

program to generate a series of first 50 even numbers using while loop.

Program to generate a series of first 50 even numbers using while loop

program to generate a series of first 50 even numbers using while loop   Object: Write a program to generate a series of first 50 even numbers using while loop. C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> using namespace std; void main() { int i=0; while(i<100) { if(i%2==0) { cout<<i<<“,”; } i++; …

Program to generate a series of first 50 even numbers using while loop Read More »

Write a program that declares and initializes two numbers with your roll no and your friend roll no and displays the greater of the two

Write a program that declares and initializes two numbers with your roll no and your friend roll no and displays the greater of the two

Declares and initializes two numbers and displays the greater of the two Object: Write a program that declares and initializes two numbers with your roll no and your friend roll no and displays the greater of the two C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> using namespace std; void main() {        …

Write a program that declares and initializes two numbers with your roll no and your friend roll no and displays the greater of the two Read More »