Forum: C++ Nov 28th, 2006 |
| Replies: 1 Views: 1,999 :idea: im currently working on mechanical design based project . plateform is windows & language is c++ ,& for gui(graphical user interface) vc++, in vc++ when i run the code in debug mode it... |
Forum: C++ Oct 6th, 2006 |
| Replies: 4 Views: 8,440 :lol: nice explaination meabed
virendra :idea: |
Forum: C++ Sep 21st, 2006 |
| Replies: 4 Views: 1,126 ok ,so ptarray[i] the is the pointer array which is holidng the address of some variable and &(ptarray[i]) is the derefrence i.e. it holds the address of ptarray[i] location i.e.pointer to... |
Forum: C++ Sep 20th, 2006 |
| Replies: 4 Views: 1,126 # include<iostream.h>
int main()
{
int ar[2]={8,2}; // (1)
int var1=66; //(2)
int var2=111; //(3)
int* ptarray[5]; //(4) |