mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
gets not a C11 standard, superceded by fgets
This commit is contained in:
parent
1b826807ed
commit
1d8d07efc9
@ -4,13 +4,14 @@
|
||||
|
||||
int main()
|
||||
{
|
||||
char hex[17];
|
||||
#define MAX_STR_LEN 17
|
||||
char hex[MAX_STR_LEN];
|
||||
long long octal, bin, place;
|
||||
int i = 0, rem, val;
|
||||
|
||||
/* Input hexadecimal number from user */
|
||||
printf("Enter any hexadecimal number: ");
|
||||
gets(hex);
|
||||
fgets(hex, MAX_STR_LEN, stdin);
|
||||
|
||||
octal = 0ll;
|
||||
bin = 0ll;
|
||||
|
Loading…
Reference in New Issue
Block a user