0
Why shows garbage value
6 Respuestas
+ 2
There are lots of scanf and printf problems in your code.
I fixed a lot of the issues here:
https://code.sololearn.com/cOgMZj6Vh3fi
If you want to read each digit as a separate int in your int array, you need a loop. Similar is needed for printing that data structure. My changes implement the necessary scan and print functions.
Also, I'm sure you want to copy values from ISBN to gsi and so on. The other way is copying from garbage to user input which makes no sense.
+ 2
Your assigning uninitialized values in to ISBN in all loops...
Ex: ISBN[i]=gsi[i]; here gsi[i] is still uninitialized...
May be you mean, you are trying to...
gsi[i] = ISBN[i] ;
Similar for all..
Edit : oh... On!oN
You declared int Arrays.. But trying with charecter manipulations... And some More errors there...
+ 1
you have warning: format '%d' expects argument of type 'int *', but argument 2 has type 'int (*)[13]' [-Wformat=]
17 | scanf("%d",&ISBN);
| ~^ ~~~~~
| | |
| | int (*)[13]
| int *
same is true for all your warnings
check this page to learn more how to check ISBN if you need:
https://www.geeksforgeeks.org/program-check-isbn/
+ 1
On!oN did you fix your code yet? I gave working code in my answer.
I see the original broken version in your link to this question.
0
Jayakrishna🇮🇳 yeah😬 i trying that but when I'm printing ISBN value why that shows garbage value
0
Josh Greig yes i did that
Thanks alot😊