main()
{
int i=400,j=300;
printf("%d..%d");
}
Answers were Sorted based on User's Feedback
Answer / muthu
It prints only garbage value, since the variables x and y
were not metioned out side the bracket
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer:
400 300
printf takes first two intilization values as default
| Is This Answer Correct ? | 2 Yes | 9 No |
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
What is the purpose of sprintf() function?
How was c created?
What is a far pointer?What is the utility?
What is printf () in c?
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
Explain function pointer with exapmles.
What is the purpose of sprintf?
How can I manipulate individual bits?
who is first prime minister in india??
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
How can I do serial ("comm") port I/O?