Tuesday, 27 December 2016

C++ Programming DS Malik 5th Edition

C++ Programming DS Malik 5th Edition

Mohammad Tayyab
Cilck Here To View
Contact Us

Contact Us

Mohammad Tayyab
Mail : tyb9900@gmail.com Skype : muhammadtayyab7862 Phone : +923029052739

Thursday, 22 December 2016

C++ Program to take log^n

C++ Program to take log^n

Mohammad Tayyab
Statement: C++ program to take log^n Code :  #include<iostream> using namespace std; void main() {        int i, n, s = -1;        float sum = 0;       
C++ Program to display pyramid of digits

C++ Program to display pyramid of digits

Mohammad Tayyab
Statement: C++ Program to display pyramid of digits Code :  //C++ Program to display pyramid of digits. and rows entered by user #include<iostream> using namespace std; int main() {