loops questions on c code example
Example: loops questions on c
#include <stdio.h>
int main( )
{
int x = 10, y = 3, z;
for(z = 0; z<x; )
z = z++ +y;
printf("%d\n", z) ;
return 0;
}
#include <stdio.h>
int main( )
{
int x = 10, y = 3, z;
for(z = 0; z<x; )
z = z++ +y;
printf("%d\n", z) ;
return 0;
}