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
Explain how can I prevent another program from modifying part of a file that I am modifying?
How are pointers declared in c?
Describe the header file and its usage in c programming?
What are identifiers and keywords in c?
explain what is a newline escape sequence?
Explain how are 16- and 32-bit numbers stored?
What is the usage of the pointer in c?
What is the use of static variable in c?
What is the use of f in c?
What is typedef example?
Can you please explain the scope of static variables?
What are multibyte characters?
What is c system32 taskhostw exe?
What are global variables and how do you declare them?
What are the modifiers available in c programming language?