Search the web
Sign In
New User? Sign Up
ch_language · Ch Language
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 203 - 234 of 1027   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
203
Hi Why can't I spot/use the conversion functions "itoa", "ltoa", and "ftoa"? They're supposed to be in "stdlib.h" (which I include) but they're not available. ...
koray.erkan
Offline Send Email
Dec 1, 2005
11:35 pm
204
Hi Neo, ... I am glad that you find the solution yourself. It is not recommended to edit registry to uninstall Ch in Windows. The Microsoft control panel...
groupsupport@...
one2001boy
Offline Send Email
Dec 2, 2005
8:43 am
205
... It provides unix environment in windows. You can search google to get more information. Regards, Tech support...
groupsupport@...
one2001boy
Offline Send Email
Dec 2, 2005
8:45 am
206
The current C Standard does not define the functions itoa, ltoa,or ftoa in any header file. One idea though, is to use sprintf. For example, the following is ...
Tom MacDonald
tmacd70783
Offline Send Email
Dec 2, 2005
5:18 pm
207
I think I had once had this problem a year ago when I first installed ch (4.0?). At that time, I have Windows 2000 Pro. At that time I thought it's may be my...
Neo Anderson
neo_in_matri...
Offline Send Email
Dec 3, 2005
3:00 am
208
... Not fresh installed XP. XP used for a couple of years. We didn't hear much complains about the uninstallation problem. Everytime we do the uinstallation...
groupsupport@...
one2001boy
Offline Send Email
Dec 3, 2005
6:36 am
209
I downloaded the pro version and ran the installation program. When I click the icon the DOS window appears but the shell symbol does not. I can not type the...
dbesch6512
Offline Send Email
Dec 11, 2005
3:06 am
210
... After the installation, there is an icon (Ch Professional) on your desktop. You can click it to start the ch shell which looks the same as dos shell. ... ...
groupsupport@...
one2001boy
Offline Send Email
Dec 11, 2005
4:03 am
211
... Looking at your short cut. Have the start in box, set to your home directory. Then run 'ch', a command line windows should open in your home directory,...
MEA-Mike.Friedrichs
friedrichs00
Offline Send Email
Dec 11, 2005
4:13 am
212
I just installed Ch on a Lintel platform, but can't run it :-( ... filc8176[1]% which ch ~/mauve/ch5.1.0/bin/ch filc8176[2]% ch -d ch: /lib/i686/libc.so.6:...
Ajit Dingankar
ajitman
Offline Send Email
Dec 16, 2005
1:02 am
213
Ajit: Mine finally worked after I turned off Norton Internet Security! Good Luck. dB ... __________________________________________________ Do You Yahoo!? ...
Dave Besch
dbesch6512
Offline Send Email
Dec 16, 2005
1:57 am
214
... Ch supports kernel linux 2.4.20-8 or higher. You needs glibc libc-2.3.2.so or higher. You may either upgrade your glibc or OS to work with Ch Regards, Tech...
groupsupport@...
one2001boy
Offline Send Email
Dec 16, 2005
6:13 pm
216
I tried to run the test program posted at the following web page http://www.softintegration.com/demos/clapack.html and I get the following error ... ...
kinemagician
Offline Send Email
Dec 17, 2005
8:06 pm
217
Hello, ... By default, CLapack header file f2c.h in Ch should be located in CHHOME/toolkit/include/f2c.h. I assume you created your own f2c.h at...
groupsupport@...
one2001boy
Offline Send Email
Dec 17, 2005
11:08 pm
218
Thanks, now it works! I used the f2c.h file retrieved from Internet. Ettore...
kinemagician
Offline Send Email
Dec 18, 2005
7:35 am
219
... The driver has to be installed separately. Without a driver, even the binary version of program will also not work. Not sure what is the license for...
groupsupport@...
one2001boy
Offline Send Email
Dec 22, 2005
6:26 pm
220
Hello. I seem to be having some trouble with random number generation in external functions. If I create a function like void func() { int i; ...
piklocin
Offline Send Email
Dec 23, 2005
4:51 am
221
Hi, your code is for the most part correct. Your error is in using the srand lower and upper boundaries. Instead of having them inside the printf function, you...
ernie smith
beerstudeep
Offline Send Email
Dec 23, 2005
3:18 pm
222
Hey it seems as if when I set 1 + rand() % 20 to a variable outside the for-loop it is set to one number for the entire loop. I think I may have figured out...
piklocin
Offline Send Email
Dec 24, 2005
7:06 am
223
Smart...I took out some things you don't really need though. It works perfectly like in the code below. I know what my mistake was. I had the randnum out of...
ernie smith
beerstudeep
Offline Send Email
Dec 25, 2005
8:29 am
224
Actually my question was all based around trying to call two functions (in this case func() ), before the seed time(NULL) can change, that both generate a list...
piklocin
Offline Send Email
Dec 25, 2005
7:33 pm
225
hello, Currently I am trying to interface my sound blaster prodigy 24 bits sound card with "ch_openal" but i did not succed in installing the Ch package (no...
rodheyd
Offline Send Email
Dec 29, 2005
1:26 pm
226
Hi, Is there any directive or command that executes a source file within the interpreter(command prompt) and keeps the variable and function values within the...
rebound1618
Offline Send Email
Jan 16, 2006
8:15 pm
227
... Ch shell provides the similar solution as tcsh or bash. using "dot" You can use 'dot' command to run a program. The global variables in the program will be...
groupsupport@...
one2001boy
Offline Send Email
Jan 16, 2006
10:31 pm
228
... Yes. The latest Ch IDE ChScite v1.5 allows to supply command line parameters to Ch. See fourth example in http://chscite.sourceforge.net/ Best regards, ...
groupsupport@...
one2001boy
Offline Send Email
Jan 19, 2006
7:06 pm
229
Dear RH, The Ch OpenAL package has been updated to v3.0.0 at http://chopenal.sourceforge.net Please redownload and try out he latest package. If you require...
Stephen
ssn17
Offline Send Email
Jan 23, 2006
9:40 pm
230
why int x=0;while(x<100){x++;printf(x);} doesnt work on command line? support tells me to break it down. int x=0; while(x<100){x++;printf(x);} because " Ch...
Luis Felipe Valdez Ru...
kyoosho
Offline Send Email
Feb 3, 2006
6:48 pm
231
... If you don't want to break as two lines. There is another way to do it as our tech engineer talked to you before. I think you figure it out yourself. You...
groupsupport@...
one2001boy
Offline Send Email
Feb 6, 2006
8:23 am
233
i dont see how this is related to the CH language, can someone please clarify this for me? are there no moderators in here? On 6 Feb 2006 22:56:18 +0600,...
f3l
kyoosho
Offline Send Email
Feb 6, 2006
6:37 pm
234
I have deleted that message. So far the level of inappropriate messages has been very low. As long as it remains low I do not plan to increase the level of...
TMacD
tmacd70783
Offline Send Email
Feb 7, 2006
3:35 pm
Messages 203 - 234 of 1027   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help