Content deleted Content added
→Examples: Fix formatting |
Derek farn (talk | contribs) Some reworking |
||
Line 1:
An '''unreferenced variable''' in the [[source code]] of a [[computer program]] is a [[variable]] that is
== Examples ==
Line 5:
[[C (programming language)|C]]:
<code>
int main(void)
{
int i, j;
for (i=0; i<10; i++)
printf("%d", i); return 0;
}
|