answersLogoWhite

0


Best Answer

15 M on a D M C stands for: 15 men on a dead mans chest

User Avatar

Wiki User

βˆ™ 11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

βˆ™ 15y ago

Y H H and a B of R.

This answer is:
User Avatar

User Avatar

Wiki User

βˆ™ 15y ago

15 men on a dead man's chest

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does 15 M on a D M C stands for?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

15 equals M on a D M C?

15= M on a D M C


What is ditloid 15 M on a D M C?

15 Men on a Dead Mans Chest


What the roman numeral D stand for?

The D stands for 500. It goes I, V, X, L, C, D and then M.


What does k g d m d c m stand for?

K stands for 'Kilo', which means 1,000.G stands for 'Giga', which means 1,000,000,000.D stands for 'Deca', which means 10.d stands for 'deci', which means 1/10th.M stands for 'Mega', which means 1,000,000.m after a number, stands for 'meter' (a unit of measure)m before a number, stands for 'milli', which means 1/1000th.C stands for 'Centa', which means 100.c before a number,stands for 'centi', which means 1/100th.c after a number usually represents the constant of the speed of light.


15 m on the d m c?

Fifteen men on the dead mens chest


What does the D-M-C in Run D-M-C stand for?

Daniel McDaniel.


Which of the following could be vector magnitudes?

C. 15 kilometers D. 30 m/s5 hours


What are the bandurria chords of buko?

On the verses, the chords are A - C#m - Bm - E. The refrain chords are Bm - C#m- C#m - Dm. The chorus chords are A - C#m - Bm - E - E - Bm - C#m - Bm - C#m - D - E. The bridge chords are D - E - F#m - E. On the last chorus, you change the key to B, so the chords would be B - D#m - C#m - F# 4x - C#m - D#m.


What does the DMZ stand for?

It stands for Demilitarized Zone D stands for De, M stands for Militarized and z stands for Zone.


The chords on the piano for video games by Lana del rey?

Intro: F#m A C#m D Verse: F#m A C#m D Chorus: E F#m A G F#m D


What is the numeric value for the roman numeral M C D X C?

X = 10 c = 100 d = 500 m = 1000


How can you write a c program to find maximum element in row and minimum element in column of a matrix?

#include <stdio.h> main() { int m, n, c, d, A[10][10],temp=0; printf("\nEnter the number of rows and columns for matrix A:\n"); scanf("%d%d", &m, &n); printf("\nEnter the elements of matrix A:\n"); for ( c = 0 ; c < m ; c++ ) for ( d = 0 ; d < n ; d++ ) scanf("%d", &A[c][d]); printf("\nMatrix entered is:\n"); for ( c = 0 ; c < m ; c++ ) { for ( d = 0 ; d < n ; d++ ) printf("%d\t", A[c][d]); printf("\n"); } printf("\n\nMaximum element of each row is:\n"); for(c=0;c<m;c++) { for(d=0;d<n;d++) { if(A[c][d]>temp) temp=A[c][d]; } printf("\n\t\tRow %d: %d",c+1,temp); temp=0; } temp=A[0][0]; printf("\n\nMinimum element of each coloumn is:\n"); for(c=0;c<n;c++) { for(d=0;d<m;d++) { if(A[d][c]<temp) temp=A[d][c]; } printf("\n\t\tColoumn %d: %d",c+1,temp); temp=A[d][c] ; } return 0; }