answersLogoWhite

0


Best Answer

Nothing: 'auto' is usable only in functions, and there it is the default storage class, so you don't have to use it at all.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between auto int a and int a?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between int a and int a in C?

nothing


What is the difference between int and int32?

The size (and value-range) of int is platform-dependent, whilst that of int32_t is fixed.


What is the Difference between normal int and regular int?

Are you sure that these words (normal int and regular int) actually mean something?


What is the difference between an auto injector and a prefilled syringe?

What is the difference between an auto injector and a pre filled syringe?


What is the difference between declaration and initialization?

Perhaps an example will help. extern int value; /* declaration */ int value; /* definition */ int value= 20; /* definition with initialization */


What is the difference between Variable and Data Type of Variable?

Let's look at an example. int a = 1; Here our variable is 'a' which is of type 'int'


What is the difference between varchar and int?

The former is for strings, the later is for numbers (integers).


What is the difference between function and recursive function?

I will explain in the easiest way the difference between the function and recursive function in C language. Simple Answer is argument of the function is differ but in the recursive function it is same:) Explanation: Function int function(int,int)// function declaration main() { int n; ...... ...... n=function(a,b); } int function(int c,int d) { ...... ...... ...... } recursive Function: int recursive(int,int)// recursive Function declaration main() { int n; ..... ..... ..... ..... n=recursive(a,b); } int recursive(int a,int b) { ..... .... .... .... } Carefully see, In the recursive Function the function arguments are same.


Is there a difference between auto and manual alternators?

No, there is not.


What is the difference between an auto and regular locksmith?

My 16 year old daughter keeps losing her keys? Is there a difference between a regular and auto locksmith?


What is difference between volatile int and const volatile int?

volatile int means the code and fom outside from code can changes the value but in const volatile int, code cannot changes the value but fron ouside can change the value


What is the difference between datatypes and modifiers in c language?

For example 'int' is a data-type, 'short', 'long', 'signed' and 'unsigned' are modifiers, 'extern', 'auto', 'static', 'register' are storage-classes. The declarations go like this: storage-class modifiers data-type identifier example: static unsigned short int x;