answersLogoWhite

0

Yes, but it will be difficult, because you will need to explicitly declare any library functions and constants that you will need, and often there are many such declarations. If you are talking about a header file specific to your program, the answer is still yes; simply declare your functions and constants before you use them. This is often done in single file program that are provided on the internet - the file will contain includes for "standard" headers, but none for specific program related headers - and the order of functions will simply be backwards, with main() at the end - or the function will be declared at the top, with main() immediately after the declarations.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is statement terminator?

Semicolon, in some languages. Line-end in some others.


What is the first line of every FORTRAN program and what does it tell the compiler?

The name of the program. For example: program sum ! This is a comment. Your program's code goes here... end program sum


Every complete statement ends with a?

Any teacher will expect you to answer by saying a semicolon (;), but this is not strictly true. First of all, the definition of a "line of code" varies from teacher to teacher and textbook to textbook. Second, even the Java Language Specification lists several types of Java statements which do not need to end in a semicolon.In general, a complete Java statement will end in either of semicolon or a closing block brace.


When to use simicolon?

Semicolon is a part of punctuation used mostly in coding. It denotes the end of line in many programming languages.


What are the basic rules of php program?

The basic rules of PHP programming include proper syntax, such as using <?php to start and ?> to end a PHP block. Variables start with a dollar sign ($) and are case-sensitive. Statements must end with a semicolon, and comments can be added using // for single-line or /* ... */ for multi-line comments. Additionally, it's essential to ensure proper indentation and organization for readability and maintainability.


Which of these terms is described as a full pause or break in the meter often followed by punctuation such as a period semicolon colon exclamation comma or dash?

A caesura is a full pause or break in the meter of a line of poetry. It is often followed by different forms of punctuation, such as a period, semicolon, colon, exclamation mark, comma, or dash.


Why do have use semi colon in matlab?

In MATLAB, a semicolon is used to suppress the output of a command in the command window. When you place a semicolon at the end of a line, MATLAB executes the command without displaying the result, which helps keep the output clean and manageable, especially when working with large datasets or performing multiple operations. If you want to see the output, simply omit the semicolon.


Many versions of SQL require you to end a command with a?

semicolon (;)


What is a line segmet?

a line segment is a part of a line that is bounded by 2 end points, and contains every point on the line between its end points


Can line segments have holes or missing pieces?

No it cannot because a line segment is a part of a line that is bounded by two end points, and contains every point on the line between its end points. If it has holes it does not contain every point between the end points.


What is the definition of a line segment?

A line segment is a part of a line that is bounded by two end points, and contains every point on the line between its end points.


What is null statement?

in C: a semicolon in itself. Examples:1. while (*to++ = *from++);2. { goto END; ... END:; }