21 lines
317 B
C
21 lines
317 B
C
/*
|
|
* main.c
|
|
*
|
|
* Created on: 11.06.2010
|
|
* Author: q242695
|
|
*/
|
|
#include <stdio.h>
|
|
#include "conio.h"
|
|
|
|
int main(void){
|
|
clrscr();
|
|
unsigned char a, b, c;
|
|
a=0x41;
|
|
b= a & 0xF0;
|
|
c= a<<4;
|
|
textcolor(0, 5, 0);
|
|
printf("hello world\n");
|
|
printf("Value 1: %d; Value 2: %d\n",b,c);
|
|
return 0;
|
|
}
|