int

  1. Maverick340

    Switch(not_working)

    #include<iostream.h> void main() { int d; char a; cout<<"Please enter your Date of Birth In the following Format :"; cout<<"DD\n" ; cin>>d; switch(d) { case (1): a="One"; break; case (2) :a="Two"; break; case (3) :a="Three"; break; default:a="Null 0000"; } cout<<a; }...
  2. D

    Temporary C++ amnesia 8|

    Simple one. But the result I expected was 1 while the actual thing is 2. So what exactly am I forgetting here? :shock:
  3. iinfi

    append (NODE **q, int num) .... HELP

    in data structures using C ... while adding a node @ the end of a link list e.g append (NODE **q, int num) what does **q stand for ??? *q is the "address pointer" of the parameter passed .... but what is **q
  4. A

    how to compile code for my sm56 modem

    i dowloaded the drivrs for sm56 from sm56.tk they are for both gcc2.x and gcc3 what is gcc where can i get it and int the steps of installing the drivers the last instruction was "make install" what does this mean
  5. G

    can you tell me what mistake i made?

    hi, i was writing a c program for my class assignment, and i got stuck. i paste it below. it appears to me that the program structure is ok, but when i run it, it does'nt give any output. i have also tried by taking the last 'printf' statement out of the for loop, but then the out put is not...
Top Bottom