Which is the Best cross platform language?4032 (12/8/2006 6:07:13 PM) comp.programming Hello I want to develop a yahoo messenger client. I am confused regarding the language. If anyone could help me? Is JAVA is best suitable for this? ( In terms of space and time complexity) thanks ... codergem
what is the reason ?736 (8/4/2006 2:09:16 PM) comp.lang.c It will not run. This is fine. main() { unsigned int i; for(i=1;i>-2;i--) printf("c aptitude"); } but in the same code if i ll make unsigned int as short unsigned int then it will run for an infinite loop. wha... codergem
Surprising Problem717 (7/25/2006 11:17:59 AM) comp.lang.c++ Hello Friends Can anyone help me where exactly at what address the *p is storing the updated value ( which is 99). const int k=9; int *p=(int *)&k; cout<<"Addr of k : "<<&k<<" "<<p; *p=99; //here *p ... codergem
Can We make Virtual Contructors?621 (6/30/2006 4:48:14 PM) comp.lang.c++ Hello Freinds Is it possible to define a Virtual constructor? if yes then how? and if no , then how? thanks ... codergem
How to calculate the time Complexity?241 (6/11/2006 11:14:46 PM) comp.lang.c++ Hi, I dont know how to calculate time complexities of a recursive function. Can anyone explain me with some thorough and also by showing step by step. Or do any of you know abour a good link or a tutorial avai... codergem
How do you find out if a machine is 32 bit or 64 bit?2116 (6/7/2006 12:01:11 AM) comp.lang.c++ One common answer is that all compilers keep the size of integer the same as the size of the register on a particular architecture. Thus, to know whether the machine is 32 bit or 64 bit, just see the size of in... codergem
Linked List problem299 (6/4/2006 10:34:08 PM) comp.lang.c++.moderated Helo friends!! I m having problems in understanding that how every node is added at last.Could anyone explain me this in much better manner. Well here it is.... we use a local "reference pointer" which always ... codergem
Linked List problem #3124 (6/4/2006 6:07:48 PM) comp.lang.c++ Helo friends!! I m having problems in understanding that how every node is added at last.Could anyone explain me this in much better manner. Well here it is.... we use a local "reference pointer" which always ... codergem
Problem with Generic pointers388 (6/3/2006 2:05:54 PM) comp.lang.c++.moderated Helo !!! I was trying to implement linked list in which the data field is Generic... the structure details are.. typedef struct node { void *data; struct node *next; }gnode; Now to add a no... codergem
codergem's replies:
Items(4) /1
Problem with Generic Pointers514 (6/2/2006 7:49:06 PM) comp.lang.c++ Helo !!! I was trying to implement linked list in which the data field is Generic... the structure details are.. typedef struct node { void *data; struct node *next; }gnode; Now to add a node into it, and i... codergem(19)
How do you find out if a machine is 32 bit or 64 bit?2116 (6/7/2006 12:01:11 AM) comp.lang.c++ One common answer is that all compilers keep the size of integer the same as the size of the register on a particular architecture. Thus, to know whether the machine is 32 bit or 64 bit, just see the size of in... codergem(19)
what is the reason ?736 (8/4/2006 2:09:16 PM) comp.lang.c It will not run. This is fine. main() { unsigned int i; for(i=1;i>-2;i--) printf("c aptitude"); } but in the same code if i ll make unsigned int as short unsigned int then it will run for an infinite loop. wha... codergem(19)