answersLogoWhite

0


Best Answer

because wankers like you are stupid retard

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why program useully use for statement?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What command statement terminates the qbasic program?

END '...END of program/halt program code execution. *NOTE*: There should be only 'one' END statement written inside of a QBASIC program. I have seen example code where they use multiple END statements; this is wrong!


Why you use if and else statement in c language program?

There is no "elseif" statement in C. You can only use "else" and "if" separately. This is a good reason for switch/case/break.


How do you use a c program-continue statement in a block not in a loop?

You can use it like an usual operator. Everything (in the same block) after continue will not be executed.


States that the applicant understands the provisions of the travel card program and proper use of the travel card.?

Statement of Understanding


What States that the applicant understands the provisions of the travel card program and proper use of the travel card?

Statement of Understanding


What States that the applicant understands the provisions of the travel card program and proper use of the travel card.?

Statement of Understanding


Any violation in the syntax of a program statement is called logic error?

No. A violation in the syntax of a program statement is called a syntax error.


What causes a muffler to split?

Useully caused by a backfire thru the exhaust from poor ignition gases built up


Explain goto and return in c?

A return statement is used to transfer the program control flow to the function that has called the current function under execution. If the function is main, then the program returns the control flow to the operating system. The syntax for return statement is:return return-type;A goto statement is used to transfer the control flow to a particular labelled statement, not necessarily back to the calling program. There are somerestrictionson using a goto statement. For eg: the goto statement should not skip any variable declarations. The use of goto statement is usually considered as a bad programming practice. The syntax for goto statement is:goto label_name;....label_name: statements;


When did the if statement begin in program software?

you tell me


How the program statement and code are related?

A statement in your program is part of the code. In a low-level programming language, a statement will map directly to a single CPU instruction. In a high-level programming language, a statement is the smallest element of the language's syntax.


What statement do you use to make a group of classes available to a program?

You would use the import command. For example:import java.lang;To do this with custom classes, it requires two things:These classes are grouped inside a package, so the java program can use themThese packages are included inside the program, just like the java jdk