• a beginner, wants to do echoing program
    #include <stdio.h> #include <reg51.h> unsigned char a[20]; void main(void) { SCON = 0x52; TMOD = 0x20; TCON = 0x40; TH1 = 0xf3; printf("enter any sentence:"); _gets(a,20); _puts(a); }...
  • a beginner, wants to do echoing program
    #include <stdio.h> #include <reg51.h> unsigned char a[20]; void main(void) { SCON = 0x52; TMOD = 0x20; TCON = 0x40; TH1 = 0xf3; printf("enter any sentence:"); _gets(a,20); _puts(a); }...
  • tell me about the stack frame stuff
    I have a C code. When calling function is executed first the value 75 is pushed to the stack and then value 25 is pushed to the stack. Then return address is pushed on to the stack. Return address...
  • tell me about the stack frame stuff
    I have a C code. When calling function is executed first the value 75 is pushed to the stack and then value 25 is pushed to the stack. Then return address is pushed on to the stack. Return address...
  • Open Source, aka, the 770 mistake, aka compile your own stuff
    Hello, Owning a Nokia 770 and having been shutout by Nokia when the N800 came out I've got some bad experiences with proprietary 'extensions' of open source software. From what I understand from...