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 can you increase the allowable number of simultaneously open files?
What is unary operator?
Explain the term printf() and scanf() used in c language?
How can you draw circles in C?
What is the difference between char array and char pointer?
Is multithreading possible in c?
How can you tell whether two strings are the same?
What are variables and it what way is it different from constants?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Can you apply link and association interchangeably?
Is a house a shell structure?
What are integer variable, floating-point variable and character variable?
How variables are declared in c?
How old is c programming language?
What is the time and space complexities of merge sort and when is it preferred over quick sort?