#include <stdio.h>
int main(void)
{
int x = 6, y = 2 * x * x * x + 5;
printf("x = %d, y = %d\n", x, y);
return 0;
}
/* my output
x = 6, y = 437
*/
Man... open a book.
Dave Sinkula
long time no c
5,058 posts since Apr 2004
Reputation Points: 2,780
Solved Threads: 314