Previous: 8.5 Summary
Up: 8 Functions and Files
Next: 8.7 Problems
Previous Page: 8.5 Summary
Next Page: 8.7 Problems
main()
{ long n;
scanf("%d", &n);
}
main()
{ long n = 12L;
printf("%d\n", n);
}
main()
{ double x;
scanf("%f", &x);
}
if (z = x)
printf("z = %d, x = %d\n", z, x);