Search
 
SCRIPT & CODE EXAMPLE
 

C

counting 7s in an integer c

long int num;
     int i = 0;
    printf("Enter An Integer: ");
    scanf("%ld", &num);
    while(num != 0){
        i+= (num % 10)/7;
        num /= 10;
    }
    printf("The Number Of Sevens In This Integer Is: %d", i);
Comment

PREVIOUS NEXT
Code Example
C :: c program for airthmetic operators 
C :: fina students name by using html backend database 
C :: networkx remove attributes 
C :: bullseye lxc network problem 
C :: how we can strore a nested structure values in arrays 
C :: analog clock c code for turbo 
C :: under 
C :: lognormal distribution - matlab 
C :: how to add a number before every line in c language 
C :: golang inline function definition 
C :: largest value in u32 
C :: FivemStore 
C :: C static libraries (creating archive from object files) 
C :: c addition 
C :: scanf autotrash c 
C :: perfect numbers in c 
C :: hello world in c language 
C :: how to do add to an integrr in c 
Dart :: flutter remove debug flag 
Dart :: flutter get current date 
Dart :: flutter datetime to string 
Dart :: order list dart 
Dart :: rotate IconButton flutter 
Dart :: flutter chip labelstyle 
Dart :: hive regiter adapter enum 
Dart :: flutter string contains 
Dart :: flutter animated opacity 
Dart :: flutter flotingactionbutton with text 
Dart :: make text filed round flutter 
Dart :: retrieve shared preferences flutter map 
ADD CONTENT
Topic
Content
Source link
Name
8+6 =