Any reply will be gratefully appreciated.
Sanjidur095423.
int main()
{
struct Student {
char name[20];
int ID;
};
//and you can access these element by using dot . operator.
struct Student student = {Ali, 112};
printf("%s", student.name);
printf("%d", student.ID);
}
Ali
it should be "Ali" obviously.
> My name is Sanjidur,a student of IUT.I've a question that "What is the
> structure?".
>
http://en.wikipedia.org/wiki/Struct_(C_programming_language)