#include <stdio.h>

int main() {
    // Structures
    // pointers
    // arrays
    // Strings
    
    //Get a number from a user check whether it is 
    //divisible by 4 and 6
    
    //create a array and get elements from the use 
    //find the product of elements
    
    //To find length of string without using
    //strlen function
    
    //first
    int num;
    printf("Enter a number:");
    scanf("%d",&num);
    if(num%d 4==0 && num%d 6==0){
        printf("Number divisible by 4 and 6");
    }else{
        printf("Number is not divisible by 4 and 6");
    }
    return 0;
}