Horje
how to make sure input is integer c Code Example
how to make sure input is integer c
#include <string.h>  

bool isNumber(string s) 
{ 
    for (int i = 0; i < strlen(s); i++) 
        if (isdigit(s[i]) == false) 
            return false; 
  
    return true; 
} 




C

Related
how to change file permissions in C language Code Example how to change file permissions in C language Code Example
online c compiler Code Example online c compiler Code Example
node.js Code Example node.js Code Example
c long to string Code Example c long to string Code Example
logical operators in c Code Example logical operators in c Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7