I have the following statement:
printf("name: %s args: %s value %d arraysize %d
", sp->name, sp->args, sp->value, sp->arraysize);
I want to break it up. I tried the following but it doesn t work.
printf("name: %s
args: %s
value %d
arraysize %d
",
sp->name,
sp->args,
sp->value,
sp->arraysize);
How can I break it up?