Forum: C Oct 23rd, 2008 |
| Replies: 3 Views: 656 int i = 1;
STUPID_ASSIGNMENT:
printf("%d\n", i);
if(i < 100)
{
i++;
goto STUPID_ASSIGNMENT;
} |
Forum: C Oct 3rd, 2008 |
| Replies: 8 Views: 2,079 When you are using the printf function:
printf("%s", a);
The function is treating variable "a" as a pointer to the beginning of a stream of characters. However, it doesn't have the... |