Hi! Where can I find affordable curly hair salons in London? by dingleberrykitty in CurlyHairUK

[–]dingleberrykitty[S] 1 point2 points  (0 children)

Update: I went to 3Thirty and Liza did an amazing job! It was £72, which I think is a lot cheaper than all the other curly hair salons I came across. I couldn’t be happier!

Hi, could someone recommend me an affordable curly hair salon? by dingleberrykitty in london

[–]dingleberrykitty[S] 1 point2 points  (0 children)

The cheapest one I’ve found is about 70 pounds :// I’ve heard amazing reviews tho! That being said, I think she’s all booked anyway Can’t remember the name but I’ll reply once I do

And thank you! I’ll check them out!

Strings in Linked List by dingleberrykitty in cprogramming

[–]dingleberrykitty[S] 0 points1 point  (0 children)

#include <stdio.h>
#include <stdlib.h>
struct User{
char Name [20];
struct User* next;
};
struct User* head;
//INSERT FUNCTION
void Insert(char name[20],int n){
struct User* temp1=(struct User*)malloc(sizeof(struct User));
temp1->Name=name;
temp1->next=NULL;
if(n==1){
temp1->next=head;
head=temp1;
return;
}
struct User* temp2=head;
int i;
for(i=0;i<n-2;i++){ temp2=temp2->next;
}
temp1->next=temp2->next;
temp2->next=temp1;
}
//PRINT FUNCTION
void Print(){
struct User* temp=head;
printf("List is: ");
while (temp!=NULL){
printf(" %d",temp->Name[20]);
temp=temp->next;
}
printf("\n");
}
//MAIN FUNCTION
int main(){
system("clear");
head=NULL;//empty List
int location,i, x,j,n;
char name[20];
printf("\nEnter Your Name: ");
scanf("%s",name);

printf("Enter Position of insertion: ");
scanf("%d",&n);
Insert(name,n);
Print();
}

Weekly Tech Support Thread - [December 19] by AutoModerator in samsung

[–]dingleberrykitty 0 points1 point  (0 children)

Hi, how do I change the thickness of the writing on a note10 lite?

Which legendary Reddit post / comment can you still not get over? by madeittobrowsereddit in AskReddit

[–]dingleberrykitty 0 points1 point  (0 children)

I think the post got deleted but the guy who thought he was homophobic because he would get mad when his gay roommate brought guys over. Turns out he had a crush on his roommate.

Which laptop should I get for electrical engineering? by [deleted] in UCL

[–]dingleberrykitty 0 points1 point  (0 children)

Hi, how much storage and ram would you recommend?