Newer
Older
Microsoft / ice / TEST.C
@tundra tundra on 24 May 2012 600 bytes Initial revision
#include <stdio.h>
#include <graph.h>


extern ice_getvmode();
extern ice_aputs(char *x, unsigned int y);
extern ice_rowcol();
extern ice_cls();

void main()

{
    static char x1[]="This is 0,0";
    static char x2[]="This is 3,4";
    static char x3[]="This is 10,75";
    static char x4[]="This is 24,0";
    static char x5[]="This is 24,77";

    ice_rowcol(0,0);
    printf("%s", x1);
    ice_rowcol(3,4);
    ice_aputs(x2, 7);
    ice_rowcol(10,75);
    ice_aputs(x3, 7);
    ice_rowcol(24,0);
    ice_aputs(x4, 7);
    ice_rowcol(24,77);
    ice_aputs(x5, 7);

}