[ back to toc ]

c program

Date: 2002/05/16 10:52

Q:
1)which function in c is used to display letters in bold?
2)can you provide me with a c code which display colours
3)can you help in the following program i am trying to implement
a linkedlists program that do the following
1:accepts numbers as inputs
2:display the number
3:delete any number at any position
4:display the results
A:
>which function in c is used to display letters in bold?

It highly depends on the output device that displays the characters. If
this is an HTML page then you simply have to

printf("<B>%s</B>",string);

to get the result in bold.

>can you provide me with a c code which display colours

This is also output device dependant. Actually this is not a C or C++
programming question but rather a question regarding the actual operating
system, device, screen, that you did not define.

>can you help in the following program i am trying to
>implement

Yes I can. Try to do it, and if you have any question that stops you ask
me.

Regards,
Peter

[ back to toc ]