Skip to content

Instantly share code, notes, and snippets.

View quazi-irfan's full-sized avatar

Quazi Irfan quazi-irfan

View GitHub Profile
@quazi-irfan
quazi-irfan / asm
Created November 18, 2017 17:24
DOS Batch Script file
@echo off
REM Assignment 7
REM Check if the file exits.
if not exist %1 (
echo File not found '%1'
exit /b 1
)
@quazi-irfan
quazi-irfan / a7runOne.bat
Created December 3, 2017 04:19
Assignment 7 Script
@echo off
REM Assignment 7 GCD : Compile and link two files
REM Check if both files exits.
if not exist %1 (
@echo.
echo File not found '%1'
exit /b 1
)
@quazi-irfan
quazi-irfan / Makefile
Created November 8, 2023 19:25 — forked from ceberly/Makefile
Row vs. Column access patterns
default:
gcc -O0 -g3 -Wall -Wextra -Wconversion -Wdouble-promotion \
-Wno-unused-parameter -Wno-unused-function -Wno-sign-conversion \
main.c
format:
clang-format -i main.c