Find the output of following code :
#include stdio.h
struct employee
{
int id;
char rank[5];
};
int main()
{
struct employee e;
e.ID = 30;
printf("LK");

}

Posted on by