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
Write a program to find factorial of a number using recursive function.
How many header files are in c?
How can I read data from data files with particular formats?
List some basic data types in c?
Write a program to print factorial of given number without using recursion?
Explain how can I manipulate strings of multibyte characters?
Whats s or c mean?
p*=(++q)++*--p when p=q=1 while(q<=6)
Explain what is a program flowchart and explain how does it help in writing a program?
How reliable are floating-point comparisons?
What is const volatile variable in c?
What are the 4 data types?
How do I convert a string to all upper or lower case?
Why do we need functions in c?
How can you invoke another program from within a C program?