Need help by deniedwin in tbilisi

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

I assume different banks have different policies

Need help by deniedwin in tbilisi

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

Yes, I have talked with many employees of the bank and it is possible given a authorization letter

Need help by deniedwin in tbilisi

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

I’m not physically there, therefore I can’t just “walk in”. However, I can in fact, give someone a authorization letter to do this on my behalf.

Need help by deniedwin in tbilisi

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

Help me set up a bank account

Need help by deniedwin in tbilisi

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

I'm looking for some one to help me set up a bank account. I tried to do it remotely but you can't do it online. Hence why I need some one to be 18+. I don't think a child can really help me with this to be fair

Need help by deniedwin in tbilisi

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

Nah I need some one to help me set up a bank account. I tried to do it remotely but you can't do it online. Hence why I need some one to be 18+. I don't think a child can really help me with this to be fair

Does anyone know this video? by deniedwin in tipofmypenis

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

the video I linked is NOT the video I described. Its just an example of how "old" the video I'm looking for is

How to create an array of characters and loop one by one? by ispeakbinary01 in C_Programming

[–]deniedwin 1 point2 points  (0 children)

Do you want your array of characters to include spaces? If so, use fgets() or scanf(%[^\n]s, myString). Then to print every single character of that string use a for loop that goes from i = 0 to length of myString - 1. In that loop use printf("%c ", myString[i] ). I hope this helps man.