KBC game in C++ Programming Software Development by reenarankawat …;\n b.Rome"; cout<<"\n c.Tibet"; cin>>ch[2]; if(ch[2]=='c…;\n b.Japan"; cout<<"\n c.Tibet"; cin>>ch[3]; if(ch[3]=='b… b.Nilgiri Hills"; cout<<"\n c.Tibet"; cin>>ch[9]; if(ch[9]=='a… Re: KBC game in C++ Programming Software Development by Schol-R-LEA … THE WORLD'?", {"Nepal", "Rome", "Tibet"}, 'c', 10}, // and so on ... {"What is called… Python & command line Programming Software Development by slipkid … universe. Any help most graciously accepted because the trips to Tibet to find the sacred Shaman that speaks to the M… Help Randomizing Programming Software Development by Frizeris … Romania Saudi_Arabia Shanxi Siam Sinkiang South_Africa Soviet_Union Sweden Switzerland Tannu_Tuva Tibet Turkey United_Kingdom Uruguay USA Venezuela Xibei_San_Ma Yemen Yunnan Yugoslavia [/CODE… Dalai Lama Booted From Twitter Digital Media Digital Marketing by slfisher … could have served as a focal point for support of Tibet, given that China, which claims sovereignty over the country, censors… Internet explorer shows blank page of my website im working on? Programming Web Development by m-hrt …;/a><br /> <span>"Free Tibet" Protest at the Olympic Torch Rally</span>… For a problem sturucture C++ Programming Software Development by Thomas Tong …; double price, playtime,costTotal; } cd[7]={{"Alan","Tibet sing",2008,51,600}, {"Thubasa","Fly… Whats on your Bucket List? Community Center Geeks' Lounge by TonyG_cyprus … fluent in another language (Greek in my case). 3/ Visit Tibet. 4/ Win just enough cash to not have to work… Which method can I use to promote travel agency? Digital Media Digital Marketing by Responsibletrek I have a website related with travel industries that provide services for trekking, tours, hiking and climbing peak in Nepal and tour to some other countries like Tibet,Bhutan & Insia. Now how can I promote my packages through online marketing? Re: Silent Circle shuts down encrypted email service over fears of NSA spying Community Center Geeks' Lounge by GrimJack … now giving land to Han Chinese to lure them to Tibet. Rather than 'conquering' the Tibetans the plan is to …Chinese province. In 1953 there were about 100k Han in Tibet. Since that time it has been Chinese policy to settle… retired military in Tibet allowing a more pro-Chinese civilian population. It is pretty… Re: Somethings to contemplate about. Community Center Geeks' Lounge by mrnutty … right thing. Are you familiar with Buddhism? You are from Tibet, right? I love that as a philosophy. And if Jesus… please respect it (e.g. me).[/B] Not exactly from tibet, from kathmandu,nepal. And I am a christian. Although, I… Re: The Vending Machine Game Community Center Geeks' Lounge by ~s.o.s~ You get a free ticket to Tibet. I put in an alchemist. Re: Horrifed... please sign petition!! Community Center Geeks' Lounge by venomlash How about making a thread against that and the atrocities in Tibet...basically reprimand China Re: Horrifed... please sign petition!! Community Center Geeks' Lounge by jbennet did you hear about the pro-tibet people rioting when the olymoic torch went throguh london Re: Surabaya is my birthday Hardware and Software Information Security by Takuniku … Data\Identities\{97225526-475E-40B3-9581-BBA012565297}\Microsoft\Outlook Express\Tibet.dbx ยป DBX - is OK (internal scanning not performed) C:\Documents… Re: Somethings to contemplate about. Community Center Geeks' Lounge by keithbadeau … right thing. Are you familiar with Buddhism? You are from Tibet, right? I love that as a philosophy. And if Jesus… Re: Silent Circle shuts down encrypted email service over fears of NSA spying Community Center Geeks' Lounge by canadafred … for US foreign policy is to incite enough turmoil in Tibet (perhaps similar to how they played a role in Egypt… Re: Silent Circle shuts down encrypted email service over fears of NSA spying Community Center Geeks' Lounge by canadafred The Chinese government is just as interested in Tibet's oil as the US oil industry. The only difference … Re: KBC game in C++ Programming Software Development by Ancient Dragon what is your question? Re: KBC game in C++ Programming Software Development by Lucaci Andrew > what is your question? As if you read my mind. Beside posting this long code, what seems to be the problem? I see you use these: #include<iostream.h> #include<conio.h> There are some topics related to that of using conio.h. And in C++ nowdays it's <iostream> not <iostream.h> Re: Python & command line Programming Software Development by Ene Uran Sounds like your problem is the "very old" OS you are using. With much luck you could find someone still familiar with WindowsME. Re: Python & command line Programming Software Development by slipkid Thanks for looking and you may be correct but I still think M.E. has a little life left to it. I am sure you were being polite when you said a little luck, again thanks Re: Help Randomizing Programming Software Development by pritaeas If you load your strings into a tstringlist, then you can use the random function to select a random line. Re: Help Randomizing Programming Software Development by Frizeris I am terribly sorry, but I have no idea how to load my strings into a stringlist. Could you be a little more detailed? Re: Help Randomizing Programming Software Development by pritaeas [code=delphi] var sl: TStringList; begin sl := TStringList.Create; sl.LoadFromFile(yourtextfilehere.txt); ShowMessage(sl[Random(sl.Count)]); sl.Free; end; [/code] Re: Internet explorer shows blank page of my website im working on? Programming Web Development by SolidSolutions your title closing tag is missing the less than character: [CODE]<title>Karaoke Talent Rate Your Favourite KJ Now/title>[/CODE] should be [CODE]<title>Karaoke Talent Rate Your Favourite KJ Now</title>[/CODE] Re: For a problem sturucture C++ Programming Software Development by Fbody Part of your problem is that you have 6 members of the cd_detail struct (group, name, year, price, playtime, and costTotal), but you're only initializing 5 of them. [QUOTE][CODE]{"Alan","I love China",2010,53,500} //only 5 values here...[/CODE][/QUOTE] The value that you are failing to initialize is the value of costTotal. … Re: For a problem sturucture C++ Programming Software Development by cougarhui To Fbody: array[index].member will work too. Although I did not really get the problem. Re: For a problem sturucture C++ Programming Software Development by Fbody It depends on how the array is declared. For this situation, it should be fine, because you only have one level of pointer indirection. But, if the array contained pointers, there would be an issue because the levels of indirection wouldn't dereference in the correct order. [B]In My Opinion[/B], it's better to be consistently explicit than it … Re: For a problem sturucture C++ Programming Software Development by vidit_X You want to find the totalcost for each group?