answersLogoWhite

0

not possible dude

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Which of the folloring punctuation marks is a semicolon?

Inside the brackets is a semi-colon [ ; ]


What is a global declaration?

A global declaration of a function or variable is a declaration that is at the global scope of the program, not inside another function. This means that the name will be visible within all functions in the program.


When a function call is made inside a running program the return address is saved on the program stack Who saves it?

The CPU (=Central Processor Unit).


Can a semicolon go inside a closing qutation mark?

If you're constructing a sentence that has two independent clauses connected by a semicolon and the first sentence happens to end with a quotation mark, hypothetically, the semicolon would go inside of the ending quotation mark. This is rarely the case, though. Typically, quotations end in either a comma and a conjunction, a single comma, or simply a period.


Why should a function or a variable be declared before its first use?

It is somewhat syntax of programming. But when program runs,device known as pre-processor process statements before main function. So when we use that function inside main function it will get idea and run directly without showing any error. So for compilers simplicity and fast execution purpose it is necessary to declare function before its use.


Will a car start without the inside panels?

If they are like door panels or decorative only, they have nothing to do with function.


Is digital camera hardware or software?

A digital camera is hardware. The computer program inside that runs it is software. ----------------- Both, alone the camera (hardware) would not work without the program (software) inside it.


C plus plus function stops after first if statement?

Functions don't simply stop running unless an unhandled exception occurs, in which case the program will crash. It's possible the program is simply trapped inside an infinite loop. However, without knowing what the if statement does it's hard to give any specific advice. Use your debugger to step through the function to see what is really going on.


Why all variables are declared with in the function?

It is not necessary to to declare variables inside the function in C. If you declare a variable inside a function, the variable becomes local for the function and another variable of same name can be declared in any other function, but you can not use the variable declared in other function. When you declare any variable outside the function body then the variable becomes global and can be used in any function of the program. Note: errno is an example for a variable declared outside any function.


Does a semicolon go inside or outside of quotation marks?

In American English, a semicolon typically goes outside of quotation marks; whereas in British English, it goes inside. For consistency, it's best to check a specific style guide or follow the conventions of the English variant you are using.


What program can do OCR inside an open PDF file JUST on a selected paragraph without opening the entire file in the OCR program?

sorry im just 11 years old


In c plus plus are local declarations visible to the function in a program?

If you declare a variable inside of any fuction (except main) it will not be available to other functions.