answersLogoWhite

0

yes

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How is main function declared?

int main (void) or int main(int a, char **p)


What are the valid signatures of the main method of a class?

The main method can be declared as either of the below: public static void main(String[] args) or public static void main(String args[])


What value is return by int main method?

1. A method declared as "int" returns an int value. 2. The main() method in Java is not declared as "int", but as "void", meaning it returns no value.


In c How do you access variable declared in main in other function?

Only if you pass a pointer to it, eg: void sub (int *into) { *into= 3; } int main (void) { int myvariable; sub (&myvariable); return 0; }


Is global variables are declared within the main function?

Might be, but don't forget the keyword 'extern':int main (void){extern int errno;...}


What effects of reformation is most obvious in the US government?

goverment documents are declared void if they refer to GOD directly


When is a driver's license declared void and terminated?

revoked


Which states declared the Alien and Sedition Acts void and of no force within their boundaries?

Virginia and Kentucky were the two states that declared the Alien and Sedition Acts void.


How do you use the word void in a sentence?

When her father died, it left a huge void in her heart. There was a void in the ground, making it impossible to cross on foot. He declared the will null and void.


How is an integer register variable named as exforsys declared?

void myfun (void) { register int exforsys; ... }


What are void marriage?

A void marriage would be one that was declared null and void by a judge, thus causing the marriage to be not of record, not valid, and illegal.


Why should the java main method has the return type as void?

A void method is one that returns no value. The Java main() method is the first method to be called, therefore it doesn't need to return a value to another Java method, therefore it is declared as void. If something needs to be returned to the operating system, this is done differently, not by "returning a value" in the sense of Java.