Write a program to show the workingof auto variable.
Answer Posted / raj
#include<stdio.h>
main()
{
auto int n=0;
{
int n=1'
printf("%d",n);
}
}
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
Why is C language being considered a middle level language?
What is size of union in c?
What are local variables c?
Why doesnt this code work?
Why does notstrcat(string, "!");Work?
What is volatile c?
to find the closest pair
What are the valid places to have keyword “break”?
When the macros gets expanded?
How do you list a file’s date and time?
Is there any demerits of using pointer?
Are there constructors in c?
Tell us two differences between new () and malloc ()?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What is enumerated data type in c?