Yes due to this only i m getting proper o/p, but why it is necessary in Turbo C++ compiler.........?
On Fri, Aug 5, 2011 at 7:41 PM, Rohit Srivastava <[email protected]>wrote: > try using dev or any new 32bit compiler it wont give that error!!! > or try using this > void linkfloat(void) > { > float a=0,*b=&a; > a=*b; > } > this code forces the emulator to be linked > On Fri, Aug 5, 2011 at 7:38 PM, Vijay Khandar <[email protected]>wrote: > >> Yes correct, In m using very old compiler Turbo C++ >> >> >> On Fri, Aug 5, 2011 at 7:34 PM, Rohit Srivastava >> <[email protected]>wrote: >> >>> you might get error: floating pointing formats not linked!! >>> but thats obsolete! I don't compiler these days will give such an error >>> otherwise code written by Dipankar will solve ur problem if u r unable to >>> take multi-word input >>> On Fri, Aug 5, 2011 at 7:24 PM, Dipankar Patro <[email protected]>wrote: >>> >>>> try doing this way and tell if the program is working properly now: >>>> for (i=0; i<3; i++) >>>> { >>>> scanf("%[^\n]", e[i].name); >>>> scanf("%f", e[i].sal); >>>> } >>>> >>>> There is always some problem in string input using %s, don't really know >>>> why though deeply. >>>> >>>> On 5 August 2011 17:48, Vijay Khandar <[email protected]> wrote: >>>> >>>>> But program is not working properly........... >>>>> >>>>> >>>>> On Fri, Aug 5, 2011 at 5:44 PM, Nikhil Gupta < >>>>> [email protected]> wrote: >>>>> >>>>>> Couldn't find any error. >>>>>> >>>>>> On Fri, Aug 5, 2011 at 5:38 PM, Vijay Khandar < >>>>>> [email protected]> wrote: >>>>>> >>>>>>> What errors are you likely to get when you run the following program? >>>>>>> >>>>>>> #include<stdio.h> >>>>>>> #include<conio.h> >>>>>>> #include<string.h> >>>>>>> void main() >>>>>>> { >>>>>>> clrscr(); >>>>>>> struct emp >>>>>>> { >>>>>>> char name[20]; >>>>>>> float sal; >>>>>>> }; >>>>>>> struct emp e[10]; >>>>>>> int i; >>>>>>> for(i=0;i<=3;i++) >>>>>>> scanf("%s %f",e[i].name,&e[i].sal); >>>>>>> getch(); >>>>>>> } >>>>>>> >>>>>>> Plz Explain anyone..................... >>>>>>> >>>>>>> Vijay...... >>>>>>> >>>>>>> -- >>>>>>> You received this message because you are subscribed to the Google >>>>>>> Groups "Algorithm Geeks" group. >>>>>>> To post to this group, send email to [email protected]. >>>>>>> To unsubscribe from this group, send email to >>>>>>> [email protected]. >>>>>>> For more options, visit this group at >>>>>>> http://groups.google.com/group/algogeeks?hl=en. >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> Nikhil Gupta >>>>>> Senior Co-ordinator, Publicity >>>>>> CSI, NSIT Students' Branch >>>>>> NSIT, New Delhi, India >>>>>> >>>>>> -- >>>>>> You received this message because you are subscribed to the Google >>>>>> Groups "Algorithm Geeks" group. >>>>>> To post to this group, send email to [email protected]. >>>>>> To unsubscribe from this group, send email to >>>>>> [email protected]. >>>>>> For more options, visit this group at >>>>>> http://groups.google.com/group/algogeeks?hl=en. >>>>>> >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "Algorithm Geeks" group. >>>>> To post to this group, send email to [email protected]. >>>>> To unsubscribe from this group, send email to >>>>> [email protected]. >>>>> For more options, visit this group at >>>>> http://groups.google.com/group/algogeeks?hl=en. >>>>> >>>> >>>> >>>> >>>> -- >>>> >>>> ___________________________________________________________________________________________________________ >>>> >>>> Please do not print this e-mail until urgent requirement. Go Green!! >>>> Save Papers <=> Save Trees >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Algorithm Geeks" group. >>>> To post to this group, send email to [email protected]. >>>> To unsubscribe from this group, send email to >>>> [email protected]. >>>> For more options, visit this group at >>>> http://groups.google.com/group/algogeeks?hl=en. >>>> >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "Algorithm Geeks" group. >>> To post to this group, send email to [email protected]. >>> To unsubscribe from this group, send email to >>> [email protected]. >>> For more options, visit this group at >>> http://groups.google.com/group/algogeeks?hl=en. >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Algorithm Geeks" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/algogeeks?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
