Predict the output of the following codeint main( ){int a=6;if(a=5){printf ("Gmit\n");}printf ("Aiml\n");printf ("sookshmas\n");return 0;}
#includestdio.hint foo(int* a, int* b){int sum = *a + *b;*b = *a;return *a = sum - *b;}int main(){int i = 0, j = 1, k = 2, l;l = i++ || foo(&j, &k);printf("%d %d %d %d", i, j, k, l);return 0;}
#includestdio.hvoid display();void main(){printf("sookshmas\n");display();}void display(){printf("Beyond knowing");}
def hello():print('hello there!')print ('whatsup')hello()