shehza-d / learning-c

Diving deep into Low Level Programming

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Diving deep into Low Level Programming

https://www.w3schools.com/c/index.php

To compile and run C program

gcc index.c -o compiledBinary && ./compiledBinary
Format specifier Used for Example
%d or %i integer data type 2
%f float data 23.56
%c Character K
%s String shehzad
%p Pointers &Memory addresses

32 Reserved keywords in C

Keywords are reserved name that have some pre-defined meaning in C language.

auto double int struct break
else long switch case enum
register typedef char extern return
union
continue for signed void
do if static while
default goto sizeof volatile
const float short unsigned

About

Diving deep into Low Level Programming

License:MIT License


Languages

Language:C 86.7%Language:C++ 13.3%