answersLogoWhite

0

You can use any text editor you want, say notepad in windows and vi in unix. You can also use MS Word, but you need to save in text format, i.e. with no formatting, because the compiler only understands the text, and not the formatting.

Often, however, the text editor is part of an integrated development environment, that makes it easier to highlight code and errors, organize classes and modules, and to debug visually. In the Windows environment, that might be Visual Studio, but it can be any supported product for your platform.

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Engineering

What are the home application of c plus plus programming language?

C++ is useful when you want to write a program which you can use for your home use. For instance, you have a lot of different files. You can use C++ to sort them out using file extensions. Or you can write a program which will keep track of programs and music you download and so on.


How do you design a computer using c plus plus?

C++ is used to write programs, not to design computers. If you want to design computers, use a CAD program specifically intended to aid in electronics design.


How do you convert from assembly to binary in c plus plus?

Use inline assembly instructions. Then compile your C++ program to produce the machine code.


How do you write a program to make asterisk isosceles triangle using for loop in c plus plus?

* ** *** **** simply use dis... { int x,y; for(x=1;x<=4;x++) { for(y=1;y<=x;y++) printf("*"); printf("\n"); } }


How do I write a C plus plus program to store my friends name in a file?

To write a C++ program that stores a friend's name in a file, you can use the <fstream> library. First, include the library and create an ofstream object to open a file for writing. Use the << operator to write the friend's name to the file, then close the file. Here's a simple example: #include <iostream> #include <fstream> using namespace std; int main() { ofstream outFile("friends.txt"); if (outFile.is_open()) { outFile << "Friend's Name\n"; // Replace with the actual name outFile.close(); } else { cout << "Unable to open file"; } return 0; }

Related Questions

How do you write a program in C plus plus plus plus How do you write a program in C to swap two variables without using the third oneo swap two variables without using the third one?

To swap two variables without using a third variable, use exclusive or manipulation... a ^= b; b ^= a; a ^= b;


Can you use C plus plus with Excel spreadsheets?

This question is irrelative because C++ is a language and Excel is a software. The thing is that we can't use C++ with Excel, but we can write a program like excel in C++.


What are the home application of c plus plus programming language?

C++ is useful when you want to write a program which you can use for your home use. For instance, you have a lot of different files. You can use C++ to sort them out using file extensions. Or you can write a program which will keep track of programs and music you download and so on.


How do you use runescape scripts?

What kind of scripts?


How to use Javascript to write to the local filesystem?

For security reasons, regular JavaScript scripts in web pages are not allowed to write to the local file system.


How do you write a program in embedded c?

Use a text-editor program.


use the word program as a direct object?

Write a program for this process.


What kind of scripts do they use in ROBLOX?

Lua Scripts


Do you have a script that you can write from the internet about Father's Day?

Yes,you can use Google.com ,type in Fathers Day,and there are many poems and scripts.


How do you design a computer using c plus plus?

C++ is used to write programs, not to design computers. If you want to design computers, use a CAD program specifically intended to aid in electronics design.


Who makes spybot?

Answer by TechsupportSpyBot is used to detect and remove spyware from your computer. It has been rated as a good antiSpyware program by Consumer Reports.The scripts make the program easier to use with JAWS.


How you write a c program in notepad?

Use the keyboard.