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();
}

A)floating point format not linked
B)Suspicious pointer conversion
C)Cannot use scanf() for structures
D)Strings cannot be nested inside structures

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 algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to