Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - FAQ - Zum CC1-Forum - Zum CC-Pro-Forum

if-Abfrage bei Datentyp long Kategorie: Programmierung (von Thomas - 11.11.2004 10:19)
Ich nutze:
C-Control II Unit, CC2-Application-Board, eigenes Board, OSOPT V3.0
Hallo zusammen,

eine Frage zur If-Abfrage: Hat diese Probleme mit dem Datentyp long?

Beste Grü�e


long a,b,r;

a=0b1111111111111111;
b=0b1000000000000000;

r = a and b;
// a and b ist ungleich Null
// r ist ungleich Null

if a and b {
  // läuft hier aber nicht rein??
}

if r {
  // läuft hier aber nicht rein??
}

if r != 0 {
  // hier funktioniert es??!!
}

r = 1;

if r {
  //mit "kleinem" r funktioniert es??!!
}


    Antwort schreiben


Antworten:

Re: if-Abfrage bei Datentyp long (von André H. - 11.11.2004 21:40)
    Re: if-Abfrage bei Datentyp long (von Thomas - 11.11.2004 21:54)
        Re: if-Abfrage bei Datentyp long (von André H. - 11.11.2004 23:10)
            Re: if-Abfrage bei Datentyp long (von Thomas - 12.11.2004 0:09)
                Re: if-Abfrage bei Datentyp long (von André H. - 19.11.2004 11:51)
                Re: if-Abfrage bei Datentyp long (von krassos - 12.11.2004 12:46)
Re: if-Abfrage bei Datentyp long (von reneforster - 11.11.2004 20:37)
    Re: if-Abfrage bei Datentyp long (von André H. - 11.11.2004 21:49)
        Re: if-Abfrage bei Datentyp long (von Thomas - 11.11.2004 22:00)
            Re: if-Abfrage bei Datentyp long (von André H. - 11.11.2004 23:16)
                Re: if-Abfrage bei Datentyp long (von Thomas - 11.11.2004 23:57)
                    Re: if-Abfrage bei Datentyp long (von André H. - 19.11.2004 11:41)
                       Re: if-Abfrage bei Datentyp long oder float (von krassos - 7.11.2005 15:32)
    Re: if-Abfrage bei Datentyp long (von Thomas - 11.11.2004 21:24)