main()
{
int i=400,j=300;
printf("%d..%d");
}
Answer Posted / pritam
Answer:
400..300
Explanation:
printf takes the values of the first two assignments of the
program. Any number of printf's may be given. All of them
take only the first two values. If more number of
assignments given in the program,then printf will take
garbage values.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can I generate floating-point random numbers?
what is ur strangth & weekness
to find the closest pair
Differentiate fundamental data types and derived data types in C.
What are the advantages of Macro over function?
What is the auto keyword good for?
What is class and object in c?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is bss in c?
What is the use of parallelize in spark?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What are the different properties of variable number of arguments?
What is the size of enum in bytes?
show how link list can be used to repersent the following polynomial i) 5x+2
Is c language still used?