All pastes #640581 Raw Edit

Unnamed

public text v1 · immutable
#640581 ·published 2007-07-31 14:37 UTC
rendered paste body
/* @ Author: Alex 'easter' Stead
 * @ This project point was just a learn abit.
 * @ It works like interpreter, you write program in phonix
 * @ and bam this little snipet just interprets it and does
 * @ what you want it to do.
 * @ Ignore above comment lolz
 */



#include <stdio.h>


int main() {

	/*
	 * In Computer testing array is stored like this:
	 * 0  > 0 => F || 1 => I || 2 => NUL
	 * 1 > 0 => N || 1 => 0 || 2 => NUL
	 */
    char testing[][3] = {{'F','I','\0'},{'N','O','\0'}};
   
    char *ptr = &testing[0]; // Lets point to 0
    printf("FI : %s ",*ptr); // Should print FI : FI but doesnt print a shit
    return 0;
}