main()
{
int i=400,j=300;
printf("%d..%d");
}
Answer Posted / manju
answer is garbage value because in printf statement there
are no variables(i,j).
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
what type of questions arrive in interview over c programming?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What's a good way to check for "close enough" floating-point equality?
Explain is it better to bitshift a value than to multiply by 2?
What is build process in c?
By using C language input a date into it and if it is right?
How do I swap bytes?
Is that possible to add pointers to each other?
i want to know the procedure of qualcomm for getting a job through offcampus
How #define works?
What is pass by reference in functions?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Explain what are multibyte characters?
How do we open a binary file in Read/Write mode in C?
In C language what is a 'dangling pointer'?