#include <stdio.h>
#include<string.h>
typedef struct BankAccount{
int accountNo;
char name[100];
}acc;
int main() {
acc acc1={123,"shobhit"};
acc acc2={124,"sandy"};
acc acc3={125,"sam"};
printf("acc no=%d",acc1.accountNo);
printf("name=%s",acc1.name);
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: