hi friends, I am not getting what these people r doing.they don't publish the questions and they don't allow others to publish the questions.even the person...
35428
Hector Maldonado
hamaldonado
Mar 1, 2004 9:36 am
That interview never existed. If you take a look at the FAQ in Stroustrup39;s Home Page you will see the answer to this question: Q: Did you really give an...
35429
Partha Sarathi Mukher...
p_s_mukherjee
Mar 1, 2004 11:25 am
Hi Saravana, I used ODBC to connect to Oracle database. -Partha...
35430
mastermindax
Mar 1, 2004 12:38 pm
my real problem is to compile a very larg library made with C in VisualC++6.0 .The problem is that the library use #define for file name in included statment...
35431
Hemanath Thokur
hemanath_thokur@...
Mar 1, 2004 2:39 pm
Hello, I need a good hash function to hash strings. For the given string it should return a hash index with mimimal clustering. Is there any good book or web...
35432
Devender Singh
sarangdevotd...
Mar 1, 2004 4:36 pm
if u r using C++ try in use STL. Hope helpfull bt. regds, DSS -- _______________________________________________ Check out the latest SMS services @...
35433
Shyan Lam
sflam108
Mar 1, 2004 5:41 pm
Can you show an example of that error? Which source file in the freetype library does what you mentioned? Shyan...
35434
Hemanath Thokur
hemanath_thokur@...
Mar 1, 2004 5:42 pm
No, Not C++ I've implement it in C. thanks, Hemanath ... From: Devender Singh To: c-prog@yahoogroups.com Sent: Monday, March 01, 2004 8:37 AM Subject: Re:...
35435
Devender Singh
sarangdevotd...
Mar 1, 2004 7:06 pm
for this some pre compiler are availabvel for example TCS use Pro C Compiler for Oracle Database connectivirt for its dos ( or may be Unix , i am ! sure) based...
35436
David McKen
cic_3_b
Mar 2, 2004 2:24 am
The hash_map is not part of the standard STL, it is a SGI extension that is only implemented by g++ and a couple other *NIX compilers (to the best of my...
35437
Leonard Tambunan
leonard@...
Mar 2, 2004 4:08 am
I need references of how to send files via infrared. And it would be great if you have the information about C++ API to do it. Rgds Leo...
35438
harish murali
harishmurali
Mar 2, 2004 7:00 am
hi , help me to write a template function.Two arguements to be passed to the function should be of type1,type2 the function's return type has to be the type...
35439
Muthalagu, Vaithiyali...
Vaithiyalingam_Muthal...
Mar 2, 2004 7:27 am
well, its nice R&D. the return type is not known to compiler. return type should be any one of type of input parameter....... ... From: harish murali...
35440
guggach
Mar 2, 2004 8:51 am
/* hi, i don't really understand why this core dumps. thanks a lot in advance + greetings guggach */ #include <stdio.h> #incluge <strings.h> int main(int...
35441
David Fleury
david.fleury@...
Mar 2, 2004 8:53 am
Hi, I dont know your compiler (as you did not mention it) not what the aim of it but the following seems to work on mine: #include <iostream> using namespace...
35442
Matthews, John
johnmatthews...
Mar 2, 2004 8:54 am
Hi- see below... ... doit_1 evaluates *tocheck = *NULL which is likely to cause the core dump. Regards John...
35443
Mukesh Kumar Jalwal, ...
mukeshj@...
Mar 2, 2004 9:02 am
In C program you cant accesee memory at address 0x00000. i.e. int * ptr=NULL; a=*ptr; will cause core dump.... in the fourth printf (below) you are passing...
35444
guggach
Mar 2, 2004 10:29 am
yes mukesh, my be the question war not clear: why does it NOT core in the SECOND and THIRD printf ?? guggach ... trying to...
35445
guggach
Mar 2, 2004 10:30 am
yes mukesh, my be the question war not clear: why does it NOT core in the SECOND and THIRD printf ?? guggach ... trying to...
35446
guggach
Mar 2, 2004 10:30 am
yes mukesh, my be the question war not clear: why does it NOT core in the SECOND and THIRD printf ?? guggach ... trying to...
35447
guggach
Mar 2, 2004 10:33 am
35448
Matthews, John
johnmatthews...
Mar 2, 2004 10:37 am
By the way, you should remove the (char *) casts from before the NULLs....
for this you first neen to know following Case 1. char*ptr="" (a)Here ptr contains some address and we can access *ptr. (b)*ptr will definitely be zero('92;0')....
35451
Victor A. Wagner Jr.
vawjr1943
Mar 2, 2004 11:49 am
That problem is certainly non-trivial. typeof(expression) does not yet exist in standard C++. for a rather thorough dissertation (and a proposal to change the...
35452
Mudit.Gogia@...
Mar 2, 2004 12:08 pm
Hi, Does any one know from where I could get the implementation of macro "L". Thanks Mudit DISCLAIMER: This message contains privileged and confidential...
35453
lithium868
Mar 2, 2004 12:13 pm
can someone help me with this one?... im jst a beginner in c programming... tnx.. i need to write a program that assign a passenger seats in an airplane,...
35454
Saikat Dutta
duttasaikat
Mar 2, 2004 12:24 pm
... Hi there, one possible method is to keep a 2D character array with the A,B,C,D as its contents and changing the corr. contents to X whenever the seat's ...
35455
Tamas Marki
tamas_m
Mar 2, 2004 12:30 pm
We don't do other people's homework here. Try to do it yourself, then if you have problems, ask. On 2004. március 2. 13:13:08, lithium868 wrote: l> can...
35456
Mukesh Kumar Jalwal, ...
mukeshj@...
Mar 2, 2004 1:00 pm
PROGRAM #include<stdio.h> int main(){ int pid,a; a=10; pid=fork(); if(pid) { sleep(20); printf(" hi i am parent and the value of a is %d and its address is %u ...