hey. who here knows how to use Pseudocode? i got an assessment task and i dont no how to start it. can anyone give me some ideas and some tips on how i can start this because i have no clue.ive attached a copy of the assignment for you. thanks
int main{
ask user to type in their name
save users name to string x
tell em they're a faggot
int main{
char name;
printf("enter your name: ");
scanf("%s", &name);
printf("%s is a faggot", name);
return 0;
[B]procedure[/B] bubbleSort( A [B]:[/B] list of sortable items ) [B]defined as:[/B]
[B]do[/B]
swapped := false
[B]for each[/B] i [B]in[/B] 0 [B]to[/B] length(A) - 2 [B]inclusive do:[/B]
[B]if[/B] A[i] > A[i+1] [B]then[/B]
swap( A[i], A[i+1] )
swapped := true
[B]end if[/B]
[B]end for[/B]
[B]while[/B] swapped
[B]end procedure[/B]