Tuesday, 25 January 2022

Checking given number is even or odd ? #C Programing

 Checking given number is even or odd ?


#C_Programming #Logic #CS 
Author :-@Vipul_Agnihotri
#include <stdio.h>
int main() {
    int number;
    printf("Enter an integer number: ");
    scanf("%d", &number);

    // This condition will be true if number is perfectly divisible by 2
    if(number % 2 == 0)
        printf("%d is even.", number);
    else
        printf("%d is odd.", number);
    
    return 0;
}


Among the following the compound that do not containing P-P overlapping is ? #ChemicalBonding #Chemistry #Class12th #12 #11 #CBSE #IIT_JEE

  Among the following the compound that do not containing P-P overlapping is ? a) H2 b) BeCl2 c) F2 d) HF Solution :-  For p-p overlap both ...