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 |
Name the language in which the compiler of "c" in written?
What are the salient features of c languages?
What is a structural principle?
const char * char * const What is the differnce between the above tow?.
write a program to count the no of repaeted words in a line?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
program to convert a integer to string in c language'
Describe the modifier in c?
second highest number in a given set of numbers
What are the parts of c program?
What are the uses of null pointers?
Do you know null pointer?