what is the output of the program??
#include<stdio.h>
main ( )
{
int a=010,sum=0,tracker:
for(tracker=0;tracker<=a;tracker++)
sum+=tracker;
printf(“ %d\n”,sum);
}
what is the difference between a=10 and a=010??
Answer Posted / manish
yes...
this is the case of memory mapping....
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What are the types of data files?
What is enumerated data type in c?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Explain what is the difference between null and nul?
What is meant by inheritance?
How can I implement a delay, or time a users response, with sub-second resolution?
What are comments and how do you insert it in a C program?
What's the difference between constant char *p and char * constant p?
What is static memory allocation?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Can a local variable be volatile in c?
What type is sizeof?
What is the difference between char array and char pointer?
Explain how do you list a file’s date and time?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?