I want to put a percent sign(%) as part of a phrase :
printf("Average is %s %", $Average);
but the % sign won't show up....how can I make it show up.
thanx
You can try:
printf("Average is %s \%",$Average);
Hope that works 😉
-Josh B