Ask your question

c++ programs

sona - Sep 11, 2009 1:41pm BST - Last answer on Sep 12, 2009 7:39am BST vijay_oo9
Hello,
i want my c++ programs because my lecturer dsnt give any programs in the lab session . so its become very difficult for me to prepare for my examsConfiguration: Windows XP Safari 530.5
Add comment

Other content from Kioskea on « c++ programs »

Firefox.exeForumSoftware
Sample c programForumProgramming
C downloadForumProgramming
Graphics programming in c [Solved]ForumProgramming
Removal of spyware,malware trojanForumViruses/security
Advantages and disadvantages of c languageForumProgramming
Sort by :   Votes | Date | Date descending 1 answers
Best answer
+3
moins plus
Q-:wap to print table of any number given by user?
Ans-:
#include<iostream.h>
#include<conio.h>
void main()
{
clscr();
{
int n
cout<<"User Please enter any nuber";
cin>>n;
for(int i=n;i<=n*10;i+n)
cout<<n<<endl;
]
getche();
}
Add comment