answersLogoWhite

0

because wankers like you are stupid retard

User Avatar

Wiki User

13y ago

What else can I help you with?

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 can you use the "break" statement in Java to prematurely exit a "for" loop?

In Java, you can use the "break" statement within a "for" loop to exit the loop prematurely. When the "break" statement is encountered, the loop will immediately stop executing and the program will continue with the code after the loop.


How can I effectively write a personal statement for a master's program?

To write an effective personal statement for a master's program, focus on showcasing your academic achievements, relevant experiences, and future goals. Be authentic, highlight your unique qualities, and explain why you are a good fit for the program. Use clear and concise language, provide specific examples, and tailor your statement to each program you apply to. Proofread carefully and seek feedback from others to ensure your statement is strong and compelling.


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.


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


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

Statement of Understanding


How can I effectively write a personal statement for a PhD program?

To write an effective personal statement for a PhD program, focus on showcasing your academic achievements, research experience, and future goals. Be sure to highlight your passion for the field, specific research interests, and how the program aligns with your career aspirations. Use clear and concise language, provide examples to support your points, and tailor the statement to each program you apply to. Additionally, seek feedback from professors or mentors to ensure your statement is strong and compelling.


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;