in Technology by
What is use of keyword auto C Programming?

1 Answer

0 votes
by

By default every local variable of the function is automatic (auto). In the below function both the variables ‘i’ and ‘j’ are automatic variables.

void f() {
   int i;
   auto int j;
}

Related questions

+1 vote
    What is keyword auto for in C-programming?...
asked Nov 9, 2020 in Technology by JackTerrance
+1 vote
    What are the valid places for the keyword break to appear in C-Programming?...
asked Nov 9, 2020 in Technology by JackTerrance
0 votes
    How is free keyword work in C?...
asked Jan 24, 2021 in Technology by JackTerrance
+1 vote
    What is the purpose of the keyword typedef in C Progamming?...
asked Nov 9, 2020 in Technology by JackTerrance
+1 vote
    Explain the use of comma operator (,) in C Programming?...
asked Nov 9, 2020 in Technology by JackTerrance
+1 vote
    What are the different ways of passing parameters to the functions in C Programming? Which to use when?...
asked Nov 9, 2020 in Technology by JackTerrance
+1 vote
    Explain the use of %i format specifier w.r.t scanf() in C-Programming?...
asked Nov 9, 2020 in Technology by JackTerrance
0 votes
    Which keyword is used to define the macros in c++? a) #macro b) #define c) macro d) define...
asked Oct 19, 2022 in Education by JackTerrance
0 votes
    If we use a keyword in domain, Will it hit with EMD filter?...
asked Mar 5, 2021 in Technology by Editorial Staff
0 votes
    What is the use of “yield” keyword in Python?...
asked Jan 9, 2021 in Technology by JackTerrance
0 votes
    explain the use of Background keyword in Cucumber?...
asked Nov 16, 2020 in Technology by JackTerrance
0 votes
    Hello mates….what is the use of keyword “import”??need ur help… Select the correct answer from above options...
asked Dec 24, 2021 in Education by JackTerrance
0 votes
    What is the use of ‘this’ keyword in java Answer in simple words Select the correct answer from above options...
asked Dec 19, 2021 in Education by JackTerrance
0 votes
    What is the use of ‘this’ keyword in java Answer in simple words Select the correct answer from above options...
asked Dec 18, 2021 in Education by JackTerrance
0 votes
    What is not the use of this keyword in Java? (a) Passing itself to another method (b) Calling ... programming questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
...