C Programming - Strings - Discussion
Discussion Forum : Strings - Find Output of Program (Q.No. 35)
35.
What will be the output of the following program in 16 bit platform assuming that 1022 is memory address of the string "Hello1" (in Turbo C under DOS) ?
#include<stdio.h>
int main()
{
printf("%u %s\n", &"Hello1", &"Hello2");
return 0;
}
Answer: Option
Explanation:
In printf("%u %s\n", &"Hello", &"Hello");.
The %u format specifier tells the compiler to print the memory address of the "Hello1".
The %s format specifier tells the compiler to print the string "Hello2".
Hence the output of the program is "1022 Hello2".
Discussion:
18 comments Page 1 of 2.
Bluehole said:
1 decade ago
Does formal parameter has an address ?
If no then the question is irrelevant.
If no then the question is irrelevant.
Puspita said:
1 decade ago
Can you please explain it for me?
Divya said:
1 decade ago
Can anyone explain this code?
Ashu said:
1 decade ago
void main() {
char str[]="hello";
clrscr();
printf("str= %u",str);
printf("\nstr= %u","hello");
getch();
}
Output-
str=65520
str=193
I am not able to understand the output
char str[]="hello";
clrscr();
printf("str= %u",str);
printf("\nstr= %u","hello");
getch();
}
Output-
str=65520
str=193
I am not able to understand the output
Penny said:
1 decade ago
I think for the above program, the output is some "address value" since format specifier "%u" is used in the printf statements.
Roger said:
1 decade ago
&"Hello2" should print the address, anyone?
Nikki said:
1 decade ago
Does "Hello2" and &"hello2" give the same result? could somebody help me. Please.
Xcoder said:
1 decade ago
This depends on string format whether "%d" or "%s" or "%u".
DunkerDonuts said:
1 decade ago
%u is the format specifier for unsigned, not pointer address. Use %p if you want to print an address.
The fact that a pointer address can be represented as an unsigned int is only machine dependent and should not be relied upon.
The fact that a pointer address can be represented as an unsigned int is only machine dependent and should not be relied upon.
Ozlemsen said:
1 decade ago
Did you try this one? I have tried and received error message.
(1)
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers