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...
That interview never existed. If you take a look at the FAQ in Stroustrup's Home Page you will see the answer to this question: Q: Did you really give an...
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...
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...
Hemanath Thokur
hemanath_thokur@...
Mar 1, 2004 2:39 pm
35432
if u r using C++ try in use STL. Hope helpfull bt. regds, DSS -- _______________________________________________ Check out the latest SMS services @...
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:...
Hemanath Thokur
hemanath_thokur@...
Mar 1, 2004 5:42 pm
35435
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...
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...
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...
Leonard Tambunan
leonard@...
Mar 2, 2004 4:08 am
35438
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...
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...
Muthalagu, Vaithiyali...
Vaithiyalingam_Muthal...
Mar 2, 2004 7:27 am
35440
/* 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...
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...
David Fleury
david.fleury@...
Mar 2, 2004 8:53 am
35442
Hi- see below... ... doit_1 evaluates *tocheck = *NULL which is likely to cause the core dump. Regards John...
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...
Mukesh Kumar Jalwal, ...
mukeshj@...
Mar 2, 2004 9:02 am
35444
yes mukesh, my be the question war not clear: why does it NOT core in the SECOND and THIRD printf ?? guggach ... trying to...
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('\0')....
Mukesh Kumar Jalwal, ...
mukeshj@...
Mar 2, 2004 11:28 am
35451
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...
Hi, Does any one know from where I could get the implementation of macro "L". Thanks Mudit DISCLAIMER: This message contains privileged and confidential...
Mudit.Gogia@...
Mar 2, 2004 12:08 pm
35453
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,...
... 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 ...
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...
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 ...