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
Write a program to print fibonacci series using recursion?
Explain that why C is procedural?
What is the easiest sorting method to use?
What is a null pointer in c?
How many bytes is a struct in c?
Why & is used in scanf in c?
Why we use void main in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Where can I get an ansi-compatible lint?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Why c is called a middle level language?
Can math operations be performed on a void pointer?
What is zero based addressing?
How can I sort more data than will fit in memory?
What is a stream in c programming?