Write a program to show the workingof auto variable.
Answers were Sorted based on User's Feedback
Answer / raj
#include<stdio.h>
main()
{
auto int n=0;
{
int n=1'
printf("%d",n);
}
}
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / 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 |
why we use "include" word before calling the header file. is there any special name for that include??????
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
can we define a function in structure?
how to find out the reverse number of a digit if it is input through the keyboard?
How does placing some code lines between the comment symbol help in debugging the code?
What is the use of #define preprocessor in c?
What are the characteristics of arrays in c?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
Where is volatile variable stored?
who is the father of c