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
How many types of operator or there in c?
What library is sizeof in c?
Why doesnt the call scanf work?
What is the difference between void main and main in c?
Is c easy to learn?
What is the difference between formatted&unformatted i/o functions?
write a program to display all prime numbers
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
while initialization of array why we use a[][2] why not a[2][]...?
Stimulate calculator using Switch-case-default statement for two numbers
Where are the auto variables stored?
Explain union.
How do you override a defined macro?
What does nil mean in c?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3