Re: class and Cstring Programming Software Development by Bench Initialise is the wrong word here. What he seems to be … Re: Using while loop display the largest +/- int value Programming Software Development by Salem Initialise your max to something negative (very large and negative). Look in limits.h Re: Infinite Loop Programming Software Development by Salem Initialise tempcounter for the first time perhaps. Re: A little help traversing through a queue please Programming Software Development by Salem Initialise countPtr Then countPtr = countPtr->next; Re: Payroll Program 2 Exiting Problem Programming Software Development by quuba Initialise both [icode] double hourlyRate; // input hourly rate double hoursWorked; //input hours worked [/icode] with -1d value. Inside while-loop refresh them with same -1d value Re: why zero? Programming Software Development by masijade Initialise your high/low variables like this [code] int highest = Integer.MIN_VALUE; int lowest = Integer.MAX_VALUE; [/code] and you can't go wrong. ;-) Re: highest, 2nd highest, lowest and 2nd lowest code Programming Software Development by myk45 Initialise low1 and low2 to a high value. Check [URL="… Re: How do I make a boolean true only when an item is found? Programming Software Development by JamesCherrill Initialise it to false, then set it to true in the code where you find or take an item? Or is the problem actaually more complicated than that? Re: Use of unassigned local variable 'sql' Programming Web Development by hericles Initialise the string sql to some value and the warning will go away. Even this is fine: `string sql = null;` The compiler simply wants to know that not initialising the variable was a deliberate action rather than a mistake. initialise value in linklist Programming Software Development by low1988 i wonder how to initialise some value in the linklist ,before insert the new node … Initialise DateTime C++/CLI = now() Programming Software Development by Tales How can I initialise a Datetime^ variable with current Date? I have this idea but I'm not sure: [ICODE] Datetime^ curDate = gcnew DateTime::Now; [/ICODE] Anyone? Yet another initialise question Programming Software Development by jimbob8472 … of my hotel class. want i want to do is initialise the bookingList array with 100 empty elements. the Booking class… Want to initialise text box on basis of another textbox value. Programming Web Development by frmsasp … the date of Registration. Date of Registration is by default initialise with current date. Will you please tell me how to… Re: Want to initialise text box on basis of another textbox value. Programming Web Development by frmsasp … the date of Registration. Date of Registration is by default initialise with current date. Will you please tell me how to… how can i Initialise 2 dimentional integer array in visual basic 6 Programming Software Development by mohanvamsi_18 Please tell me .. how can i Initialise 2 dimentional integer array in visual basic 6.0 ..... if i am giving like this .. it returns error .. at ([B],[/B]) Dim intScores(,) As Integer = {{75, 90}, {9, 25}, {23, 56}, {6, 12}} please guide me ... i want initialization as globel array .. laptop fails to initialise Hardware and Software Hardware by allan.g my laptop fails to initialise and also to boot apparently due to error 0xc0000006. can anyone help me to get it up and running and deal with 0xc0000006. I am unable to boot in safemode also. I'm running XP with SP2. allan.g How do I initialise an array of structs to null? Programming Software Development by DaveTran I've got a simple struct. [CODE] struct Data { public float Size; public Data(float size) { Size = size; } } [/CODE] If I create an array of the struct above, the array does not initialise each element to null. How can I change this? char*** - should I initialise and if so, how? Programming Software Development by IMJS … understand but it leaves me flummoxed as to how I initialise this char*** variable. Somehow I need to be able to… affect all the Apps currently running except App initialise i Programming Mobile Development by lse123 Android DEV a. WAKE_LOCK in an App results affect all the Apps currently running including App initialise it? In other words has symptoms in other Apps? b. If **forget to** disable GPS receive from an App then, generallly disable GPS on the phone, and re-enable it, this App should continue GPS operation....or depends on the App? How to: boost::...::binary_oarchive as class member & initialise in derived Programming Software Development by Elixir42 Hi Kind-DaniWebbers, How do you initialise a boost::archive:binary_oarchive in a different place to where … Re: Isass.exe unable to initialise Hardware and Software Hardware by JANINE … discover what it was and why it would fail to initialise. the things i quoted before were what i found out… doubly linked list--- help needed1 Programming Software Development by jack11b … a doubly linked list. im trying to initialise three names into the list and print them…;ctype.h> #include <string.h> void initialise(Name *&, char arr[], Name *&); void DisplayList(Name…"; char s3[]="name3"; initialise(s1, Head, Tail); initialise(s2, Head, Tail); initialise(s3, Head, Tail); DisplayList(Head) … Switch statements and arrays. Programming Software Development by Muni123 …random number generator initialiseGame( grid, maze, mouse, apple); //initialise grid (incl. walls & mouse) paintGame( grid, message…(int apple[][2]); setInitialMazeStructure( maze); //initialise maze setInitialMouseCoordinates( mouse);//initialise mouse's position setIntialAPPLECoordinates(apple); // intialise… make my program simple Programming Software Development by uknown2 … hotel[x] = ""; //initialise initialise(hotel); //better to initialise in a procedure while ( roomNum <… Room(); String roomName; int roomNum = 0; initialise(myHotel); while (roomNum < 4) {… + myHotel[x].getName()); } } } private static void initialise( Room hotelRef[] ) { for (int x = 0;… Double Linked Lists and Functions required Programming Software Development by InvalidDLL …struct Sheet *Next, *Prev; }Sheet; //prototypes void initialise(Sheet *&, char arr[], Sheet *&); void right(…+1]="sheet3"; initialise(Head, init1, Tail); initialise(Head, init2, Tail); initialise(Head, init3, Tail); …; }//end switch }//end while }//end main void initialise(Sheet *&L, char arr[], Sheet *&… page loading problem Programming Web Development by dami06 …array_map('stripslashes_deep', $_POST); $_REQUEST = array_map('stripslashes_deep', $_REQUEST); } // Initialise DB object $DB = new DAO( APP__DB_HOST, APP__DB_USERNAME, APP__DB_PASSWORD, APP__DB_DATABASE);…'] = $_user->id; $_cookie->save(); } // Initialise UI Object $UI = new UI($_user); // Global Functions … Need help with an 8086 Assembly project please! Programming Software Development by mentor07825 … point using Bresenham’s classic line drawing algorithm ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;; ;initialise deltax with the absolute difference between its start and end… now otherx: sub ax,bx mov deltax,ax ;initialise deltay with the absolute difference between its start and … Problem with my method can you help?? Programming Software Development by sammo5889 …attribute from the parameter. • initialise the "height" attribute from the parameter. • initialise the "playerShip"… space by dividing these intervals by 2. • initialise the "spaceObjects" attribute with a new… space objects (i.e. new SpaceObject[10]). • initialise the "running" attribute to true. Method… help with while statement Programming Software Development by shiny27 … to competitor // initialisation phase finalScore = 0; //initialise finalScore competitorCounter = 1; //initialise loop counter lowestScore = 6.0; // initialise lowest score to 6.0 highestScore… = 0.0; // initialise highest score to 0.0 judgeCounter = 1; // initialise number of judges //display welsome message cout… need help with code Programming Software Development by zaraki … = 0; for(i=0;i < 30; ) { printf("inside initialise\n"); row = rand() % 8; //randomising rows columns and value…(row, col, value); //check for repeat values if(flag == 1) initialise(); else { printf("assingning values to baseArray\n"); baseArray…