Quantcast
Channel: WeakNet Labs
Viewing all articles
Browse latest Browse all 38

Content Migration

$
0
0
I will be moving all WeakNet Laboratories content back to blogger.com. Thank you for your support and patience during the migration process.

 1
2
3
4
5
6
7
8
9
10
11
#include<stdio.h>
voidmyFunction(inti);// function prototype
intmain(void){
intj=0;
myFunction(j);
return0;
}
voidmyFunction(inti){// (i) is copied onto the stack with the function here
printf("%d\n",i);
return;
}

The sauce above has been "beautified" by http://hilite.me/

Viewing all articles
Browse latest Browse all 38

Trending Articles