Search:

Type: Posts; User: sphreak

Search: Search took 0.01 seconds.

  1. Thread: asmcode->c-fkt

    by sphreak
    Replies
    1
    Views
    1,118

    today, i got the explanation. if somebody is...

    today, i got the explanation.
    if somebody is interest in that:
    1) i can only intepret the surrender value. In this example you can read it by this line: "cwd ;dx,ax=signed long int"
    2) double has...
  2. Thread: asmcode->c-fkt

    by sphreak
    Replies
    1
    Views
    1,118

    asmcode->c-fkt

    Hello
    I have this code:

    proc _gegeben1_171202asm
    ;Dies ist die gegebene ASM Prozedur fuer die 1.Aufgabe im Modul 1A171202.C.
    ;Dort ist der C Aufruf dieser gegebenen ASM Prozedur zu...
  3. Replies
    1
    Views
    4,141

    hello i have found the solution. i thought v[3]...

    hello
    i have found the solution. i thought v[3] is global, but every process has his own.
    sry for this thread:)
    regards
    sphreak
  4. Replies
    1
    Views
    4,141

    fork() and signal()

    Hello
    I have got a code from my professor:


    #include <unistd.h>
    #include <stdio.h>
    #include <signal.h>

    int v[3] = {0, 0, 0};
  5. Thread: preincrement

    by sphreak
    Replies
    6
    Views
    1,318

    preincrement

    Hello


    #include <iostream.h>
    int main()
    {
    int c=3;
    cout << (((++c)) + ((++c))) << endl;
    return 0;
    }
  6. Replies
    3
    Views
    1,805

    hmm... so it haven't some reason because of...

    hmm...
    so it haven't some reason because of memory managment or other reason?
    the compiler know it when there is a line how this in the class, that the class is a pure virtual class?
  7. Replies
    3
    Views
    1,805

    virtual prototype in a class

    Hello
    I have this base class:



    1. class base
    2. {
    3. private:
    4. .....
    5. public:
  8. Replies
    12
    Views
    2,796

    in germany

    hello
    i don't know how it is in america but in germany, universitys are not taking only java or c++. you are learning many language and sometimes they have a special language to learn the basics of...
  9. write "cin.ignore();" before getline(var,5)...

    write "cin.ignore();" before getline(var,5) (example)
    getline read 5 letters or enter. than he add \n.
    the next geline get the \n (enter) and ignore it, so you must clean the puffer with...
  10. Replies
    5
    Views
    6,395

    bool check::diagonal(char icon, char board[3][3])...

    bool check::diagonal(char icon, char board[3][3])
    {
    if[board[2][2] == icon)
    {
    if(board[1][1] == icon && board[3][1] == icon || board[1][3] = icon && board[3][1] ...
  11. Replies
    5
    Views
    6,395

    bool check::horizontal(char icon, char...

    bool check::horizontal(char icon, char board[3][3])
    {
    int counter = 0;


    for(int i = 0; i < 3; i ++)
    {
    if(board[i][i] == icon)
    counter ++;
  12. Replies
    0
    Views
    1,491

    change signal - seriel port - dos or linux

    i search in google and board serach but I don't find really help for my problem

    my circuit:
    pin 3(send) --- diode --- pin 2(receive)

    an easy circuit

    the diode shines every time, because the...
  13. Thread: IP address

    by sphreak
    Replies
    2
    Views
    970

    if you using linux, you can read the ip in the...

    if you using linux, you can read the ip in the file /etc/hosts

    regards
Results 1 to 13 of 13