gen maxx

Dependencies:   mbed

main.cpp

Committer:
ee13b035
Date:
2014-12-20
Revision:
0:5ee238da834b
Child:
1:7fcd3c79c65f

File content as of revision 0:5ee238da834b:

#include "mbed.h"



int main()
{
    int hours = 0x12;
    int scnds = 0x23;
    char tmp[2] ; 
    tmp[0] = (char)hours;
    tmp[1] = '\0';
    for(int i=0;i<20;i++){
    printf("%s \n",tmp);}
    return 0;
}