Alternative for gotoxy in gcc..

G

Guest

Deep said:
Is there any alternative for gotoxy and similar functions in gcc??

gcc is a compiler. It does not come with its own standard library.
Firstly, you need to know which libraries you are using. Secondly, when
you have found out, you should ask on a newsgroup or mailing list
appropriate for those libraries, because this newsgroup deals with
standard C, and standard C has no alternative for gotoxy.
 
D

Default User

Deep said:
Is there any alternative for gotoxy and similar functions in gcc??


You'll have to ask on a different newsgroup, compiler-specific things
are off-topic here. Try gnu.gcc.help for specific gcc ways or
comp.unix.programmer for the more portable curses.




Brian
 
C

CBFalconer

Deep said:
Is there any alternative for gotoxy and similar functions in gcc??

There is no such function as "gotoxy" in ISO standard C. There is
a keyword "goto" available, and you are allowed to name a label
"xy". So you can legally use:

....
xy: /* some code here */;
....
goto xy;
 
M

Malcolm

Deep said:
Is there any alternative for gotoxy and similar functions in gcc??
In a nicer newsgroup, people would have heaped curses upon you for asking
such a question.
Here I'll just tell you its off-topic.
 
Joined
Apr 24, 2011
Messages
1
Reaction score
0
Is there any alternative for gotoxy and similar functions in gcc??
i need your justificatin .....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top