C Programming - Input / Output - Discussion

Discussion Forum : Input / Output - Find Output of Program (Q.No. 3)
3.
What will be the output of the program ?
#include<stdio.h>
char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}";

int main()
{
    printf(str, 34, str, 34);
    return 0;
}
char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"; main(){ printf(str, 34, str, 34);}
char *str = %c%s%c; main(){ printf(str, 34, str, 34);}
No output
Error in program
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
28 comments Page 1 of 3.

Krishu said:   7 years ago
I didn't get anybody's logic and neither found anybody's logic matchning the answer. So, what i interpret from this main statement is :

#include<stdio.h>
char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"; --> (this is a string definition global to program)

int main()
{
printf(str, 34, str, 34); --> ( this is a printf statement which outputs the string )
return 0;
}

ELABORATING --> printf(str, 34, str, 34);

1st step : ( printf(str
SO, this goes to the string str and prints it
WE GET : ---> char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"; <--- IN OUTPUT

2nd step : (printf(str,34
SO, this says or this moves the string to point to 34 position ( including the count of spaces as this is a string)
NOW, string points to m of main

3rd step : (printf(str,34,str
NOW, this will print the string from m character of the main()
i.e will output ---> main(){ printf(str, 34, str, 34);}";

step 4 : (printf(str,34,str,34)
THIS will increment the string again by 34.

SO, FINAL OUTPUT FROM 1st step and 3rd step is;
COMBINING, WE GET FINAL OUTPUT AS,
char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"; main(){ printf(str, 34, str, 34);}.
(9)

Vishnupriya said:   9 years ago
@Nivethitha

char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}";

Given print stmt: printf(str, 34, str, 34);

Here,

The first str in printf is replaced by "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}";

And the remaining arguments are as such, thus it will now become

printf("char *str = %c%s%c; main(){ printf(str, 34, str, 34);}" , 34,str,34);

The first character is " so the contents will be starting printing to output..while printing
the escape sequence %c is replaced by ASCII value of 34 which is "

Then %s is replaced by str which is "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"--the escape sequence here are not substituted bcoz we have not specified any variables for it..

%c is again replaced by ASCII value of 34 which is "

Thus output is:
char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"; main(){ printf(str, 34, str, 34);}
(1)

Shekhar balaskar said:   8 years ago
@ALL.

In this program, first it takes pointer to the first chart in *str(that is starting address of str),
In printf statement first it printf the portion till the ""(double couts) that is ASCI value of 34, %c prints the ASCII value of 34, %s prints str value after that it print "(closing couts),after that it again prints the main function (that is remaind):
printf(str)-char *str =||.

34-"(str)-char *str = %c%s%c; main(){ printf(str, 34, str, 34);} -34-"
||main(){ printf(str, 34, str, 34);}.

Ashok Phour said:   1 decade ago
printf(str,34,str,34);

1. On the first parameter (str) it place it.
"char *str = %c%s%c; main(){ printf(str, 34, str, 34);}";

2. Here 3 format specifier %c%s%c (char,string,char) so on the first specifier it place (") (ASCII value of 34=") ,
then
On the second time print full string (str) to (%s) specifier.

On the last format specifier (%c) it will place (") because last variable is (34=").

Suyash said:   1 decade ago
printf(str, 34, str, 34);

expands to:

printf("char *str = %c%s%c; main(){ printf(str, 34, str, 34);}" , 34 ,str, 34);

then,

1.printf prints: char *str =
2.%c is nothing but ASCII value for double quote ie (")
3.%s prints: char *str = %c%s%c; main(){ printf(str, 34, str, 34);}
4.%c prints: (")
5.prints: ; main(){ printf(str, 34, str, 34);} [It is the remaining portion of expanded str}.
(1)

Kavyashree said:   1 decade ago
Its because printf(str , 34 , str , 34) is replaced as

printf("char *str = %c%s%c; main(){ printf(str, 34, str, 34);}" , 34 , char *str = %c%s%c; main(){ printf(str, 34, str, 34);}" , 34);

So it will print untill it finds first ending double quot. So rest of the things will be ignored.

Anubhav singh (Funky) said:   1 decade ago
OK ! I can explain it in a easier way:

Consider the statement:-

printf("abc1 %c %s %c abc2", 10, xyz, 10);

You can see its a simple printf statement.

Now replace, abc1 => char *str =

abc2 =>; main(){printf(str, 34, str, 34);}

10=> 34.

xyz =>char*str = %c%s%c; main(){printf (str, 34, str, 34);}

You will get the answer.

Anonymous said:   7 years ago
Why it prints from char * str = "char *str str.." and not from the quotes.? The string variable str refers to the strings within the double quotes?

I actually don't understand this. How is this possible?

Sundar said:   1 decade ago
I got the following output in 32 bit GCC compiler.

char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"; main(){ printf(str, 34, str, 34);}

Nivethitha said:   9 years ago
Why once again main() printf(str,34,str,34) is printed at last? I don't understand. Please can anyone explain this code?


Post your comments here:

Your comments will be displayed after verification.