Search : in
By :

C++ programs

Last answer on Sep 12, 2009 7:39:18 am BST sona, on Sep 11, 2009 1:41:24 pm BST 
 Report this message to moderators

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 exams

Configuration: Windows XP
Safari 530.5

Best answers for « c++ programs » in :
Change the default installation folder C: \ Program Files Show Change the default installation folder C: \ Program Files The installation of most software programs are set by default in the C: \ Program Files. Below is a means of how to change into another partition. Under Windows Vista, select...
Error loading C:\PROGRA~1\MYWEBS~1\bar\5.bin\M3PLUGIN>DLL Show Error loading C:\PROGRA~1\MYWEBS~1\bar\5.bin\M3PLUGIN>DLL Issue Solution Note Issue I need help for error Error loading C:\PROGRA~1\MYWEBS~1\bar\5.bin\M3PLUGIN>DLL Solution To solve: Please click on Start, Click on Run and type the...
Compiling a program in C with Dev C++ on Vista ShowCompiling a program in C with Dev C++ on Vista Compiling a C source code under Vista with Dev C++, can be a quite difficult procedure. Quick solution: the g++ compiler To be used with Dev-PSV: Go to Tools/compiler options and...
[C Language] finding the square root of a number Show[C Language] finding the square root of a number Intro Notes Intro A simple C program allowing you to find the square root of a number. #include #include int main(void) { double x = 4.0, result;...
A dialect for C language ShowA dialect for C language Cyclone language Conclusion You want to do some C programming but the fact that C embedded automatic Garbage Collector will make debugging harder and is not quite effective when making system programming, such...
Programming languages - Instructions ShowFramework The term "Application Framework" describes an API structured set, which is organised within an executable environment. The term "Application Framework" is generally shortened to just "Framework".
IP Address ShowWhat is an IP address? Computers communicate over the Internet using the IP protocol (Internet Protocol), which uses numerical addresses, called IP addresses, made up of four whole numbers (4 bytes) between 0 and 255 and written in the format...
Environment variables ShowEnvironment variables An environment variable is a dynamic value loaded into the memory that can be used by several processes operating simultaneously. On most operating systems, the location of some libraries or of the main system executables may...

1

 vijay_oo9, on Sep 12, 2009 7:39:18 am BST
  • +1

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();
}

Reply to vijay_oo9