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
i have a written test for microland please give me test pattern
What is meant by keywords in c?
Explain the difference between the local variable and global variable in c?
What is wrong with this declaration?
Differentiate Source Codes from Object Codes
How can I get random integers in a certain range?
What is null pointer constant?
Explain how do you declare an array that will hold more than 64kb of data?
What is a program flowchart and explain how does it help in writing a program?
What does %c do in c?
Can we change the value of constant variable in c?
Is c is a high level language?
Explain the advantages and disadvantages of macros.
What is boolean in c?
How do you search data in a data file using random access method?