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
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Why should I use standard library functions instead of writing my own?
how to introdu5ce my self in serco
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is the code for 3 questions and answer check in VisualBasic.Net?
Write a Program to accept different goods with the number, price and date of purchase and display them
Why is it usually a bad idea to use gets()? Suggest a workaround.
Without Computer networks, Computers will be half the use. Comment.
What is printf () in c?
How does free() know explain how much memory to release?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What are the different types of C instructions?
How to declare a variable?
What are the 4 types of functions?
What is a void * in c?