#includestdio.hint main(){for(;;)for(;;)printf("khushipatil");return 0;}
#include stdio.hvoid swap(int *a, int *b) {int t = *a;*a = *b;*b = t;}void solve() {int a = 3, b = 5;swap(&a, &b);printf("%d %d", a, b);}int main() {solve();return 0;}
What will be the output of the following C code? (Initial values: x= 7, y = 8)#include stdio.hvoid main(){float x;int y;printf("enter two numbers \n", x);scanf("%f %f", &x, &y);printf("%f, %d", x, y);}