Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
How do i make a validating of only number and make characters invalid if entered. Using this method #include<stdio.h> #include<string.h> #include<conio.h> #include<math.h> #include<stdlib.h> #include<ctype.h> int main() { int arr [100],el,number ; // for(int i=0;i<100;++i) //scanf("%d",arr[i]); while( el == 0 ) { printf("Enter a number between 1 to 100"); scanf("%d", &number … |
The End.