I have a folowing code in my programme... ... char str[30]; scanf("%s",str); ... Now i give the following string from keyboard... "Hello How are you" Scanf...
From: s_prashi [mailto:s_prashi@...] Sent: 01 October 2004 08:01 ... No - it's a result of the lazy/ignorant programmer not reading the specification for...
Poor design???...I think you are in the wrong forum... You have alternatives to scanf that can solve your problem... try gets() or fgets(). Thanks. "s_prashi"...
rk.balgi@...
Oct 1, 2004 7:20 am
39829
hello sir, how to get field value from oracle database using vc++? help me thank you regards meenachi...
... it's not unique to C it has to do with floating representations I say again: DO NOT COMPARE FLOATING TYPES FOR EQUALITY ... Victor A. Wagner Jr....
(i)Use odbc to conenct to the database ( create dsn name first). (ii) Use CDatabase class for connection from VC++ form to DB (Oracle) (iii)Use CRecordset for...
Vipin Jain
vipinj@...
Oct 1, 2004 8:48 am
39832
the function is stdlib is abort() another standard function that calls this function is terminate() There is yet another standard library function unexpected()...
Well my fault. Actually these the two functions are there in the standard C++ library & are invoked while exception handling. by default, standard library...
Dudes, I have a small doubt in C++. Can a class be blocked from inhertiance. i.e it should not be inherited. Is there any keyword similar to 'final' in Java. ...
peternilsson42 wrote: In any case, use clock() or time() from <time.h>. Why do you want to? It's one of the exercise on Deitel's book. -- Anggie Bratadinata...
Hello ever one, i have a doubt, (i.e) how to connect/interfacing with C code and a Visual Basic module? Please, clear my doubt. Wait for every one Re....
... running or not. ... Assuming Windows, use: CreateMutex() Don't worry about cleaning up the mutex at program exit (and it is better if you don't - you want...
... Actually, there are...but they aren't very good. To the OP: You lose information when compiling (e.g. variable names, comments, function names, etc.) as...
... <snip> Fabio, I answered in a similar manner, but I notice you have the full-blown security context (apparently doing NT service-related things when you...
Would there be a faster way to write data to the hard drive then this? I am trying to benchmark a serial ata array that has scsi 320 #include <fstream> using...
Jared Sowers
jsowers@...
Oct 1, 2004 10:02 pm
39852
Um does this go through the File system ? If so then your answer is yes. Even if you aren't going through a FS then the answer is still yes but you are pretty...
Just looked at it again; you are writing to F:\db.dat so this is on a windows file system. Unfortunately if you are trying to find the HDD raw I/O performance ...
I don't think u can use the ampersand. The reason is probably, on giving str, the compiler takes it as the address of str. So when u give &str, it does not...
Sarvex, Can you send in some details on what optimizations is done for "loops" by the compiler. Regards, shubhashish Sarvex Jatasra <sarvex@...> wrote: ...