C LANGUAGE - 4: DATA TYPES

 IN THIS TUTORIAL, WE WILL SEE ABOUT DATA TYPES:

#include<stdio.h>
#include<stdlib.h>

int main()
{
    int age = 16;
    double gpa = 16.0;
    float point = 3.7;
    char grade = 'D';
    char phrase[] = "Shayan is Optimistic.";

    return 0;
}

Comments