Skip to content

Instantly share code, notes, and snippets.

View sutirthaC97's full-sized avatar
😇
Hi, there!

Sutirtha Chakraborty sutirthaC97

😇
Hi, there!
View GitHub Profile
@sutirthaC97
sutirthaC97 / datatypes-example.c
Last active April 9, 2017 16:13 — forked from anonymous/datatypes-example.c
An example C program demonstrating different data types, their variables and their naming conventions.
/*An example C program to demonstrate different data types.*/
#include <stdio.h>
int main()
{
int meaningOfLife = 42;
float a_random_float = 56.9;
double pi = 3.141;
char c = 'c';