Showing posts with label any. Show all posts
Showing posts with label any. Show all posts
Monday, February 16, 2015
C Program to print table of any number
#include<iostream.h>#include<conio.h>void main(){ clrscr(); int i,n; cout<<"Enter a ny number:"; cin>>n; cout<<""; for(i=1;i<=10;++i) cout<<" "<<n<<"*"<<i<<"="<<n*i<<""; getch(...
Thursday, February 12, 2015
Want to install Mac OS or any other linux OS and still be able to run your windows applications Read this
Virtual Machines vs Parallel InstallationsI spent the entire day today in the realm of proprietary software setting up my MacBook laptop to run Windows XP Professional via Bootcamp. Having now used Virtual Machines and Parallel/Dual-Boot installations on a couple of machines I wanted to take a few minutes to share my experiences and thoughts on the subject. For those of you not familiar with the concepts,...
Wednesday, February 11, 2015
C program to raise any number x to a positive power n
#include<stdio.h>#include<conio.h>#include<math.h>void main(){ int x,n,result; clrscr(); //to clear the scrren printf("Enter value of x and n:"); scanf("%d%d",&x,&n); result=pow(x,n); printf("Result=%d",result); getch(); //to stop the scre...
Subscribe to:
Posts (Atom)