vote up 4 vote down star
2

If for example I should not use standard library functions like printf, putchar then how can I print a character to the screen easily. Is there any easy way of doing it. I dont know much about system calls and if I have to use them then how?

So can any one advice an easy way of printing a character without using library functions?? Thanks in advance..

flag

Why can't you use the standard library functions? They're "standard" for a reason, no? – lc Jan 22 '09 at 7:04
well I wanted try out that to use in some sort of parser If u know any way please advice...... – Manoj Doubts Jan 22 '09 at 7:10
Turbo C(DOS program): char far* scr = (char far*) *B8000000L; *src = 'M'; src += 2; *src = 'D'; or try this: en.wikipedia.org/wiki/Brainfuck :) – Hao Jan 22 '09 at 7:38
Wow excellent work Hao you helped me a lot the first small program u proposed me is working well but u mistakenly written src instead of scr but ok i changed it now its working. so i am assuming that this B8000000L is the address from where our output character goes to screen is that correct ? – Manoj Doubts Jan 22 '09 at 9:03
@Hao, If you have given this one as an answer instead of comment I would have accepted it as an answer.ok upto how many times we can increment that scr (B8000000L).I think there will be some limit right. please let me know about any resource to know more about this addresses.Any way gr8 job.Thanks – Manoj Doubts Jan 22 '09 at 9:08

4 Answers

vote up -3 vote down

Why would you want to do that?

link|flag
Wow, a bit touchy, eh? – Ed Swangren Jan 22 '09 at 7:19
@Manoj: Uhh.. Might want to watch those typos a bit closer. "i fu" instead of "if u"? Oops! ;) – Jonathan Lonowski Jan 22 '09 at 7:25
thank u Jonathan – Manoj Doubts Jan 22 '09 at 7:27
vote up 5 vote down

In linux, you can use the write system-call:

write(1, "hello\n", 6); // write hello\n to stdout

If you can't get enough of it, you can go one step lower, invoking the syscall generically:

syscall(__NR_write, 1, "hello\n", 6);

It's worth knowing about strace, which you can use to see which syscalls are used by any particular program while it runs. But note that for "some simple parser", it's hardly needed to use raw system calls. Better use the functions of the c library.

By the way, lookout for WriteFile and GetStdHandle functions if you want to do the above in Windows without using the c standard library. Won't be as l33t as the linux solution though.

link|flag
1  
Hate to to you, that's a library function. Most likely in your C library. – derobert Jan 22 '09 at 7:07
ok then in windows if anybody knows how to do it please help. well for ur note this is not a homework question. I was trying to do it for some simple parser – Manoj Doubts Jan 22 '09 at 7:14
1  
objdump -T /lib/libc.so.6 | grep syscall informs me that syscall is still a library function :-D – derobert Jan 22 '09 at 7:17
vote up 10 vote down

In standard C, you can't. The only I/O defined in C is through the C standard library functions.

On a given platform, there may be ways to do it:

  • Make kernel calls directly. You will probably need to write some inline assembly to do this. You could make litb's write call directly, without using your C library. Grab the source of your C library to see how it's done.
  • Write directly to the frame buffer. Multi-user OS's often disallow this (at least without making any library/kernel calls).

Unless you're writing your own C library, I'm not sure why you'd want to do this.

link|flag
yeah thank u i wanted to do some thing similar to that thank u very much if u have any more resources for that please send me thank u – Manoj Doubts Jan 22 '09 at 7:18
'plz send the codez' is not what SO is about. – Adriano Varoli Piazza Nov 9 at 15:05
vote up 2 vote down check

Well thank u all for ur answers.I found one simple answer by a comment from Mr. Hao below the question. his answer is simple program like this

Turbo C(DOS program):

char far* src = (char far*) 0xB8000000L; 
*src = 'M'; 
src += 2; 
*src = 'D';

or try this: http://en.wikipedia.org/wiki/Brainfuck :) – //Hao (an hour ago)

I tried it on Turbo C and its working. I wanted a simple solution like this and I wanted to accept it as correct answer but he(Hao) gave it as a comment so I pasted it here for other users to know about this on behalf of him and accepted it. Once again thank u Mr.Hao.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.