Homework 2: Swapping contents
contents swapping
#include <stdio.h>
int main() {
float a = 4.0f, b= 3.7f, c;
printf("before swapping, a = %f, b = %f\n", a, b);
// your code starts here
// your code ends here
printf("after swapping, a = %f, b = %f\n", a, b);
return 0;
}
ZINC Submission
Last updated