* What compiler is doing when we pass unnecessary parameters in scanf
@ 2009-07-29 14:18 RAM_LOCK
[not found] ` <f662f0210907290855m57c191e2pb8ba28dc3d87f780@mail.gmail.com>
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: RAM_LOCK @ 2009-07-29 14:18 UTC (permalink / raw)
To: linux-c-programming
Hi,
In the second scenario what value is it printing when i have given extra
parameter in scanf?
Does it vary from compiler to compiler?
Scenario : I
-------------
root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> cat simple-interest.c
#include <stdio.h>
void main ()
{
int p;
float i=0;
printf ("enter the principal amount\n");
scanf ("%d",&p);
i = (p*5*5)/100;
printf ("Interterest is : %f\n",i);
}
root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> ./a.out
enter the principal amount
100
Interterest is : 25.000000
Scenario : II
-------------
> cat simple-interest.c
#include <stdio.h>
void main ()
{
int p;
float i=0;
printf ("enter the principal amount\n");
scanf ("p:%d",&p);
i = (p*5*5)/100;
printf ("Interterest is : %f\n",i);
}
root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> ./a.out
enter the principal amount
100
Interterest is : -9321198.000000
--
View this message in context: http://www.nabble.com/What-compiler-is-doing-when-we-pass-unnecessary-parameters-in-scanf-tp24719839p24719839.html
Sent from the linux-c-programming mailing list archive at Nabble.com.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Fwd: What compiler is doing when we pass unnecessary parameters in scanf
[not found] ` <f662f0210907290855m57c191e2pb8ba28dc3d87f780@mail.gmail.com>
@ 2009-07-29 16:32 ` Aneesh Bhasin
0 siblings, 0 replies; 4+ messages in thread
From: Aneesh Bhasin @ 2009-07-29 16:32 UTC (permalink / raw)
To: linux-c-programming
----forgot to add list as cc------
Hi Kaushik,
any extra non-whitespace, non "%" characters are matched against the
input given from stdin - if they match, it is ignored and if it
doesn't match, no further input is taken.
In case of your second scenario, when you specify "p:%d" as string,
the program expects the input to be of the format "p:<some number>"
but since you give 100 as the input, no value is assigned to the
variable p (you can check the return value of scanf - its zero) and
hence, whatever junk value is in variable p, it is used for further
calculation.
With the second scenario, try giving the input as "p:100" and then p
should get value 100 as expected...
Hope that helps.
Aneesh
On Wed, Jul 29, 2009 at 7:48 PM, RAM_LOCK <Kaushik.Sarkar@netapp.com> wrote:
>
> Hi,
> In the second scenario what value is it printing when i have given extra
> parameter in scanf?
> Does it vary from compiler to compiler?
>
> Scenario : I
> -------------
> root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> cat simple-interest.c
> #include <stdio.h>
>
> void main ()
> {
> int p;
> float i=0;
> printf ("enter the principal amount\n");
> scanf ("%d",&p);
> i = (p*5*5)/100;
> printf ("Interterest is : %f\n",i);
> }
> root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> ./a.out
> enter the principal amount
> 100
> Interterest is : 25.000000
>
>
> Scenario : II
> -------------
> > cat simple-interest.c
> #include <stdio.h>
>
> void main ()
> {
> int p;
> float i=0;
> printf ("enter the principal amount\n");
> scanf ("p:%d",&p);
> i = (p*5*5)/100;
> printf ("Interterest is : %f\n",i);
> }
> root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> ./a.out
> enter the principal amount
> 100
> Interterest is : -9321198.000000
>
> --
> View this message in context: http://www.nabble.com/What-compiler-is-doing-when-we-pass-unnecessary-parameters-in-scanf-tp24719839p24719839.html
> Sent from the linux-c-programming mailing list archive at Nabble.com.
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: What compiler is doing when we pass unnecessary parameters in scanf
2009-07-29 14:18 What compiler is doing when we pass unnecessary parameters in scanf RAM_LOCK
[not found] ` <f662f0210907290855m57c191e2pb8ba28dc3d87f780@mail.gmail.com>
@ 2009-07-29 17:01 ` Glynn Clements
2009-10-09 12:45 ` shiva kumar
2 siblings, 0 replies; 4+ messages in thread
From: Glynn Clements @ 2009-07-29 17:01 UTC (permalink / raw)
To: RAM_LOCK; +Cc: linux-c-programming
RAM_LOCK wrote:
> In the second scenario what value is it printing when i have given extra
> parameter in scanf?
> Does it vary from compiler to compiler?
> scanf ("p:%d",&p);
> i = (p*5*5)/100;
> printf ("Interterest is : %f\n",i);
> }
> root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> ./a.out
> enter the principal amount
> 100
> Interterest is : -9321198.000000
The p: isn't matched in the input, so scanf() skips the following %d
conversion, leaving p unchanged. So p will contain garbage (i.e.
whatever value happened to be stored in that memory location already).
--
Glynn Clements <glynn@gclements.plus.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: What compiler is doing when we pass unnecessary parameters in scanf
2009-07-29 14:18 What compiler is doing when we pass unnecessary parameters in scanf RAM_LOCK
[not found] ` <f662f0210907290855m57c191e2pb8ba28dc3d87f780@mail.gmail.com>
2009-07-29 17:01 ` Glynn Clements
@ 2009-10-09 12:45 ` shiva kumar
2 siblings, 0 replies; 4+ messages in thread
From: shiva kumar @ 2009-10-09 12:45 UTC (permalink / raw)
To: linux-c-programming
behavior of this is undefined just do man scanf
RAM_LOCK wrote:
>
> Hi,
> In the second scenario what value is it printing when i have given extra
> parameter in scanf?
> Does it vary from compiler to compiler?
>
> Scenario : I
> -------------
> root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> cat simple-interest.c
> #include <stdio.h>
>
> void main ()
> {
> int p;
> float i=0;
> printf ("enter the principal amount\n");
> scanf ("%d",&p);
> i = (p*5*5)/100;
> printf ("Interterest is : %f\n",i);
> }
> root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> ./a.out
> enter the principal amount
> 100
> Interterest is : 25.000000
>
>
> Scenario : II
> -------------
>> cat simple-interest.c
> #include <stdio.h>
>
> void main ()
> {
> int p;
> float i=0;
> printf ("enter the principal amount\n");
> scanf ("p:%d",&p);
> i = (p*5*5)/100;
> printf ("Interterest is : %f\n",i);
> }
> root@kaushik_Fedora11 ~/C/LET_US_C/ch-1> ./a.out
> enter the principal amount
> 100
> Interterest is : -9321198.000000
>
>
--
View this message in context: http://www.nabble.com/What-compiler-is-doing-when-we-pass-unnecessary-parameters-in-scanf-tp24719839p25820534.html
Sent from the linux-c-programming mailing list archive at Nabble.com.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-10-09 12:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-29 14:18 What compiler is doing when we pass unnecessary parameters in scanf RAM_LOCK
[not found] ` <f662f0210907290855m57c191e2pb8ba28dc3d87f780@mail.gmail.com>
2009-07-29 16:32 ` Fwd: " Aneesh Bhasin
2009-07-29 17:01 ` Glynn Clements
2009-10-09 12:45 ` shiva kumar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).