Write a program to show the workingof auto variable.
Answer Posted / shrikantauti
main()
{
auto int i,j;
printf("%d%d", i,j);
}
/*
output could look like:
1211 221
*/
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Should a function contain a return statement if it does not return a value?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
How can I manipulate strings of multibyte characters?
Define the scope of static variables.
Is main is a keyword in c?
What is the scope of global variable in c?
Differentiate between null and void pointers.
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Explain how are portions of a program disabled in demo versions?
Explain how do you declare an array that will hold more than 64kb of data?
What happens if a header file is included twice?
Explain what does it mean when a pointer is used in an if statement?
Why enum is used in c?
Why static is used in c?
Explain what is the difference between null and nul?