Questions related to the scanf() family of functions in the C runtime library, which read and convert formatted data.
I am trying to change data in array, this is part of my code: u_char paket[100]; //here i put …
c hex scanf unsigned-charFor this code: int i; scanf("%d\n",&i); I am not able to stop my program until I …
c++ c format scanf formatted-inputI've tried looking around and I can't seem to find where the error lies. I know it must have something …
c scanf fgetsCppcheck shows the following warning for scanf: Message: scanf without field width limits can crash with huge input data. To …
c scanf cppcheckI have tried scanf("%u",&number) and I have entered negative number the problem is when I printf("%d",…
c printf scanf unsigned format-specifiersI want to scan lines like "[25, 28] => 34" I wrote a small program to test it out: #include <cstdlib> #…
c parsing escaping scanf format-specifiers