Jun 20, 2006 #1 F fatma1000 Banned Joined Apr 30, 2006 Messages 147 Helped 3 Reputation 6 Reaction score 2 Trophy points 1,298 Location eygpt Activity points 0 what is the deference between float n; and float *n; Added after 9 minutes: also what is the mean of struct fld*ftr[2]; and ftr[0]->EX[] and holders Added after 3 hours 27 minutes: please what is the mean of bzero regards
what is the deference between float n; and float *n; Added after 9 minutes: also what is the mean of struct fld*ftr[2]; and ftr[0]->EX[] and holders Added after 3 hours 27 minutes: please what is the mean of bzero regards
Jun 20, 2006 #2 J jjohn Banned Joined Jun 17, 2006 Messages 156 Helped 17 Reputation 34 Reaction score 8 Trophy points 1,298 Activity points 0 help3 c++ It is related to variable and pointer to variables .. Study any C eBooks plenty are available ..
help3 c++ It is related to variable and pointer to variables .. Study any C eBooks plenty are available ..
Jun 20, 2006 #3 E ehsanelahimirza Full Member level 6 Joined Feb 24, 2006 Messages 334 Helped 28 Reputation 56 Reaction score 7 Trophy points 1,298 Activity points 3,570 Re: help3 c++ float n it is a float variable to store float(values in points) float *n it is pointer to float variable n which is keeping address of this variable
Re: help3 c++ float n it is a float variable to store float(values in points) float *n it is pointer to float variable n which is keeping address of this variable