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.

Reply via email to