... If your data contains NULs, this sprintf() will fail/not work as you want it. You need memcpy() instead. ... And this strlen won't work either. -- PJH 'Two...
... We aren't here to do your homework for you. Pick a project that you know you can do but will require you to enhance your knowledge and capabilities in the...
hello friends, can i get the details of basic mathamatical calculation which is used to write codings and building programmes if there is any pdf file sent or...
... types of ... Sorry for not providing enough info! xstring is not my library, it came with vis c++ express 2008. It is a vis c++ library. str is a sentence...
... Try printing out str to see that it contains exactly what it is supposed to contain. And probably you can also check the value of each element that...
hello guys, I am new to fedora community.but i am familiar with RH 9. I used c++,GTK and glade - generate GTK code for C++. In fc7, i couldn't build c++ code...
Maybe you should ask on a Fedora list? There isn't enough info here to help -- do you have all of the glade packages needed (glademm, gtkmm, etc)? Are you...
Hey, Did you hear about Scour? It is the next gen search engine with Google/Yahoo/MSN results and user comments all on one page. Best of all we get paid for...
Hey, Did you hear about Scour? It is the next gen search engine with Google/Yahoo/MSN results and user comments all on one page. Best of all we get paid for...
Hi, Is it necessary to have interface and implementation of a template class in the same file? If I move the implementation to a separate .cpp file and call...
I am a new to c-programming, so here i seek your help. i would like to write a code for .XOR with the following criteria: input layer=2, hidden layer=5,...
Hello, It seems odd that this just popped in to your head, was it one of them revelations you get while in the shower? I've experienced many myself, but none...
Tyler Littlefield
tyler@...
Aug 4, 2008 2:17 am
67548
thanks man but don't be presumptuous...you may kindly ignore it if u don't feel like responding it positively. it was never posted for criticism and not even...
Be a part of growing Online Search business.. Make money while you search... *http://tinyurl.com/onlinebiz* <http://scour.com/invite/sumitkchawla/> I know...
I want to know the following: A pointer is a special type of variable which holds the memory address of an int variable or a float variable or a char cariable...
On Mon, Aug 4, 2008 at 11:51 AM, raj_duttaphookan ... Not all memory addresses need be the 'same type' - indeed, The Standard allows for pointers to different...
... But when dereferencing, how would the compiler know what was stored in the memory? It can't just use the destination type. For example: pointer p; int i; i...
... and ... dereference it ... an ... stored in ... I guess the compiler would know it because when we define a variable it is assigned a memory address. E.g.:...
... But to handle something like: int getValue(pointer p) { return *p; // what type? } the compiler would have to maintain a list of all memory addresses and ...
... address ... that of ... byte ... to an ... variable ... and ... and ... Well, you do have a point, but I am not convienced. In your above explaination, I...
... Ok, try this one :-) int main(int argc, char *argv[]) { int i = 1; short s = 2; pointer p = (argc > 1) ? &i : &s; return *p; } In this simple example the...
... Also, what happens if getValue() and main() are in different compilation units? So when getValue() is compiled, the compiler doesn't know anything about...