Simple program to assign values to many variables in one line in C language
Simple program to assign values to many variables in one line in C language, in one line multiple values in c .
#include
main()
{
int i,j,k;
k = (i = 4, j = 5);
printf("k = %d",k);
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment