answersLogoWhite

0

void myfun (void)

{

register int exforsys;

...

}

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Can you declare printf for integer variable?

printf is declared in stdio.hFormat specifier for an integer value is %d.


What is the code required to convert an integer variable to a string variable in Java?

There are several different methods to convert an integer variable to a string variable in Java. For example, one can use the following code to convert an integer variable to a string variable: Integer.toString(number)


(variable) = 34?

Integer


How you can modify an integer variable value in a function?

with an assignment: variable = value variable += value variable /= -3; ...


Is the value 3 a string variable?

No, it is an integer. You can save an integer value to a string variable but, in this case the value is explicitly stated to be 3.


What are variable raised to whole number powers?

They are the integer powers of that variable.


How do you declare an integer?

datatype variable name;


If a variable has possible values -2 6 and 17 then this variable is?

If a variable has possible values -2 6 and 17 then this variable is an Integer.


What is private in vbnet?

The 'private' keyword in vb.net is commonly used in variable declaration or sometimes in creating functions. This means that when a variable or function is created privately (eg private variable1 as integer), the class that contains that variable/function will be the only class that will have access to it. Here's an example: class form1 Private variable1 As Integer=5 end class _______________________ class form2 end class form2 will not be able to access form1's variable1 because it is declared as Private. To make form1's variable1 usable to form2 it should be declared as Public variable1 As Integer=5. I hope i've given you a clear explanation. Good luck on your programming mate!


What is difference between an integer variable and floting point variable?

The set of the possible values.


What is nextint in java?

"nextInt()" gets the next integer entered by the user.here is a simple code-import java.util.Scannerpublic class {bhal bhalScanner in = new Scanner (System.in)int x;System.out.println ("enter a number");x=in.nextInt();}here "in" is an object of the "Scanner" class and "nextInt()" gets the next integer from the user for "in" object and assigns it to "x" variable which is declared as int variable before.


WHAT DOES Address Register DO?

Address Register are designed to make it easy to index into the array of constant register. The address allows you to provide a signed integer offset into the constant register.