session1.c

#include <stdio.h>

int main() {
    printf("Session 1\n");
    // integer variable


    // floating point variable
 

    // double precision variable
    double number = 3.14159265358979323846;

    // character variable


    // mixing things up!
    
    
    // operator examples


    // division examples


    // increment operators


    // scanf example



    return 0;
}

Last updated