#include <stdio.h>union Sook{int nu;char m;};int main(){union Sook s;printf("%d", sizeof(s));return 0;}
#include <stdio.h>void reverse(int i);int main(){reverse(1);}void reverse(int i){if (i > 8)return ;printf("%d ", i);return reverse((i++, i));}
What will be the output of the following Python code?class tester:def __init__(self, id):self.id = str(id)id="165">>>temp = tester(12)>>>print(temp.id)