Originally Posted by
under_exposed
(Why are leading spaces removed from posts?)
On other forums you'd have CODE tags for this purpose, but since they don't work here, you can get the general idea across by using the Indent buttons like this:
#include <stdio.h>
void main (int argc, char * argv[])
{ int i,j;
int requested_value;
if (argc != 2)
{ printf( "\nUsage: %s value ", argv[0] );
return;
}
...