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 / xyz
near keyword int there is a colon so isnt tat a compling error
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is there any possibility to create customized header file with c programming language?
What is difference between union All statement and Union?
a program that can input number of records and can view it again the record
what are bit fields in c?
What is page thrashing?
What is the difference between text and binary modes?
What functions are in conio h?
What is %lu in c?
How can I do graphics in c?
What is the use of clrscr?
What is the symbol indicated the c-preprocessor?
What are extern variables in c?
What is the deal on sprintf_s return value?
How can I determine whether a machines byte order is big-endian or little-endian?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.