If you did something really bad you have to tell them. If you don't, the whole friendship will feel unreal. And, chances are if he's really your friend he will forgive you. Hope this helps! ;)
no because it is public not your friends library or something , its not private
jesus, matilda, catzer, mahamid and fraun they were his best friends and the public were the rest
It must be a terrible life without friends. Everyone needs friends. Friends can make our life colorful. If you like i can be your friend. If you don't like, it doesn't matter. I can tell you a good place to make friends. http://friends.foreignercn.com/public/home.jhtml Hope you find a friend as soon as possible.
Andrew Jackson was a personal friend, although they were often at odds on public policy.
Handshake
For telling to your friend that you like your friends you have to make question like that he tell you from his side that you really like him. Indian Matrimony http://www.matrimonyhouse.com/Public/ProfessionSearch.aspx
The knowledge of who Henson's closest friends were in 1990 is not something the general public knows.
if you have your account private, no. if you add them as a friend/accept their request they will be able to However if you have it set as public, anyone can
Seeing a friend's husband with another woman in a public place is not uncommon. Hopefully it means nothing, but, if he is at the movies he should be with his wife and not another woman. It could be his/her cousin or his wife may know so be careful how you approach your friend. This is a difficult situation you are in and some friends would rather remain silent about what they saw, but true friends are honest. When/if you tell your friend then don't be surprised if she may turn on you. This can often happen. She will either react in that manner or her heart will be broken. Be prepared to be caught in the middle of a possible breaking up of a marriage and be aware of her husband as he could retaliate against you for telling his wife.
From your Facebook Timeline Profile Click and go to "Friends" Now click on "Edit" Select ans set it to "Public" Now everyone will able to see your friends list. If anyone have their friend in your friend list. It will be shown as mutual friends.
Going to the movies (with a lot of friends) going to a public place, or just hanging at a friend's house.
Within a class declaration, include the following:friend ;For example:friend class MyClass; // friend classfriend void MyClass::SomeFunction(); // friend class method.friend void MyFunction(); // friend function.When declaring friend functions and friend class methods, you must declare an unambiguous prototype, including its return type and its parameter types, and all instances of the const keyword. If the function prototype is contained in another file, that file must also be included in the class declaration file.Friends can be declared anywhere in a class declaration. However, friends cannot be inherited so it doesn't matter if they're declared public, private or protected (access specifiers have no meaning to friends). But be aware that friends have privileged access to all members, including private and protected members. This is said to undermine the fundamentals of encapsulation, however the purpose of a friend is to extend the class interface, and is no more an undermining of encapsulation than is public inheritance. However, access should be limited to as few friends as possible; a class with many friends implies a fundamental design flaw in the class.