Reputation: 5459
I have the following code:
#include <stdio.h>
int main(){
printf("hello world");
}
The output is the following:
hello world%
Is there a way to remove the final "%" (which is actually black on white and not white on black like the other characters) of the output?
Upvotes: -2
Views: 564
Reputation: 1
You can put printf("\n"); at the end of the int main().
Upvotes: 0
Reputation: 11
I think that is your shell prompt as @SteveSummit has said in the comment to the Question.
Upvotes: -1