028. 쉼표 연산자 이해하기(,)028. 쉼표 연산자 이해하기(,)

Posted at 2010. 11. 12. 03:12 | Posted in Computer/초보자를 위한 C 언어 300제
#include <stdio.h>

main()
{
	int x = 1, y = 2, max;

	max = x > y? x : y;

	printf( "max = %d, x = %d, y = %d", max, x, y );
}
//