Search:

Type: Posts; User: luisvalencia

Search: Search took 0.00 seconds.

  1. ohh that helps a lot.

    ohh that helps a lot.
  2. 3 and 2 for example

    3 and 2 for example
  3. In C. How to retrieve RETURN values from assembly functions? I always got 0

    Hello. I have a simply programs that sums two numbers in assembler. I also have a c program with a .h file that must use that program.

    But I always got as a result a 0.

    This is my asm code
    ...
  4. Replies
    19
    Views
    158,909

    Is there an easy way to center on the screen ...

    Is there an easy way to center on the screen with printf ??
  5. Ohh that helps a lot.

    Ohh that helps a lot.
  6. How to Create .H files and use Assembler functions?

    Hello I have DevC++. I created a function on Assembly and it generated and obj file

    I added this obj file with the project settings but I dont know how to construct the .H file and how to call it...
  7. Replies
    19
    Views
    158,909

    I am using DevC++ I found this I dont...

    I am using DevC++
    I found this

    I dont understand it but it works


    void clrscr(void)
    {
    COORD coordScreen = { 0, 0 };
    DWORD cCharsWritten;
  8. Replies
    19
    Views
    158,909

    . I am having problems using Borland specific...

    . I am having problems using Borland specific functions such as clrscr()

    Include conio.h to your source, and add C:\Dev-C++\Lib\conio.o to "Further Object Files" in Project Options (where...
  9. Replies
    19
    Views
    158,909

    If I dont have clrscr in my conio.h what should I...

    If I dont have clrscr in my conio.h what should I do?
  10. Replies
    19
    Views
    158,909

    I alredy included conio.h and I got this...

    I alredy included conio.h and I got this
    C:\Archivos de programa\PellesC\Projects\3\main.c(14): warning #2027: Missing prototype for 'clrscr'.
    C:\Archivos de programa\PellesC\Projects\3\main.c(58):...
  11. Replies
    19
    Views
    158,909

    I dont understand the last part you gave me. ...

    I dont understand the last part you gave me.


    How should I use that on my program?
  12. Replies
    19
    Views
    158,909

    Thank you very much. Its working now. A last...

    Thank you very much. Its working now.

    A last question is How Can I Erase the whole screen and if its an easy way to make a menu centered=??


    I would do it as

    *********************
    * ...
  13. Replies
    19
    Views
    158,909

    It didnt work.

    It seems to be easy but I get many errors.
    Building main.obj.
    C:\Archivos de programa\PellesC\Projects\3\main.c(5): warning #2027: Missing prototype for 'sum'.
    C:\Archivos de...
  14. Whats the best C Ide to integrate with Assembler programs easily?

    Whats the best C Ide to integrate with Assembler programs easily?

    All in One Ide.
  15. How to use functions done in assembler?

    Hello. I made an assembler program which sums two numbers for example.


    I want to call it from a C program. Can somebody explain me about PROTYPING(.H Files)? Linking?

    Whats the process I have...
  16. Replies
    19
    Views
    158,909

    How to make a menu on C? DOS

    Hello,

    Can somebody explain me how to make a menu in C?
    The menu must call another functions and validate that I enter a valid key, when I hit enter in the other screen it must go back to the...
Results 1 to 16 of 16