#includestdio.h#includestring.hstruct details{char name[30];int roll;int id;int percentage;};int main(){struct details d;d.roll=456789;d.id=17383899;d.percentage=90;strcpy(d.name , "me");printf("name=%s\n",d.name);printf("roll=%d\n",d.roll);printf("id=%d\n",d.id);printf("percentage=%d\n",d.percentage);return 0;}
What will be the output of the following Python code?class tester:def __init__(self, id):self.id = str(id)id="224"temp = tester(12)print(temp.id)