Learn How to Make Student Portal in PHP / MySQL. Here is Tutorial for That:
Detail Marks Certificate Program in C++
#include<iostream.h> #include<conio.h> #include<iomanip.h> void main() { struct res { char RegNo[15]; char name[15]; char Fname[15]; char adrs[20]; int marks[6]; }; res s[40]; int obMarks=0, total; for(int i=0; i<=39; i++) { cout<<“\n\n\n”<<setw(45)<<“DETAILED MARKS CERTIFICATE”<<endl<<endl; cout<<“\n\n\tStudent Name:\t”; cin>>s[i].name; cout<<“\n\tFather Name:\t”; cin>>s[i].Fname; cout<<“\n\tReg. …
Freelancing with YouTube, WordPress, Upwork, and Fiverr!
How to work as a Freelancer.. Here is all the materials and guidelines click on the link below and download it from Google Drive … Freelancing with YouTube, WordPress, Upwork, and Fiverr!
Find Factorial in C++
What is a Factorial of a number ‘n’? The factorial of a number ‘n’ is the product of all number from 1 upto the number ‘n’ it is denoted by n!. For example n=5 then factorial of 5 will be …
Find Prime Number in C++
What is a PRIME NUMBER? ” A Natural number greater than 1 which has only two divisor 1 and itself is called prime number “. For Example: 5 is prime, because it has only two divisors 1 and itself. …