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
Can we access the array using a pointer in c language?
What extern c means?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Explain what does the format %10.2 mean when included in a printf statement?
What is calloc() function?
What is static volatile in c?
What are the usage of pointer in c?
Which function in C can be used to append a string to another string?
Explain what is meant by high-order and low-order bytes?
What is the difference between struct and typedef struct in c?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
Why enum is used in c?
What is #include conio h?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
How can I sort a linked list?