answersLogoWhite

0

#include <stdio.h>

int main() {

printf("text here....\n");

return (0);

}

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How do you Open a text file as C plus plus source code?

All C++ source code is is a text file with the .cpp extension. So if you save your code as *****.cpp then it is automatically C++ source code.


What does a programmer use to produce c source code?

Text editor.


What type of a program is used in order to enter c source code?

What type of a program is used in order to enter C source code


How do you convert text into binary in vb or c sharp code?

C# EXAMPLEString text="My sample data";System.Text.ASCIIEncoding encode=new System.Text.ASCIIEncoding();//convert to binary and store in a byte[]byte[] binaryArray=encode.GetBytes(text);


What type of programme is used in order to enter c source code?

Text editor.


What is the code for displaying the message in vb dialog box '' You Done it ''?

MsgBox "You done it", 16, "Well done!" Make sure that this code is followed up by something, e.g. if you have a text box and you require a user to out an answer in it, your code should be something like: If textbox1.text = "Answer" Then Msgbox "You done it", 16, "Well done!" End If End Sub


How do you display HTML code in windows?

HTML is a code language for markup. "Executing" would mean interpreting in this context, i.e. opening the file in a browser (displaying the page) rather than a text editor (displaying the code itself).


Can you provide me C plus plus code for simple text editor?

http://ex-vi.sourceforge.net/


What is a source code file in c plus plus?

A source code file is a plain-text file containing C++ instructions. The instructions must be compiled and linked to create a native machine code executable.


How I'm create source code in anci c?

C source files are plain text-files, so you can use any text-editor like NotePad, EditPad, and countless others.


How do you get ecm code on 92 deville?

I am assuming that you want to get the codes stored in the ECM or BCM that indicate problems. To display stored codes: 1. Turn ignition on. 2. press the "Off" and "Warmer" buttons on the A/C control panel at the same time until all of the warning lights on the dash light up, then release the buttons. 3. Codes will display on the fuel gage to the left of the steering column. 4. .E before the code means that it is displaying a history code for the ECM 5. .E.E before the code means that it is displaying a current ECM code. 6. .F before the code means that it is displaying a history code for the BCM 7. .F.F before the code means that it is displaying a current BCM code. 8. When it reads .7.0. All of the codes have been displayed and the system is ready to perform other diagnostic tests. 9. To Exit Diagnostics, press "Auto" on the A/C panel CadillacMan


What is the HTML code to make a multi line string?

If you want to force a line break use the &lt;br/&gt; tag to force the browser to begin displaying text on the next line. If you want the text to wrap automatically in the browser (even when resized) enclose the text in the &lt;p&gt;paragraph&lt;/p&gt; tags.