Schema.DescribeSObjectResult R = Account.SObjectType.getDescribe();
for (Schema.ChildRelationship cr: R.getChildRelationships()) {
if (cr.getRelationshipName() == null) continue;
system.debug('Child Object Relationship Name:'+cr.getRelationshipName());
}