answersLogoWhite

0

What is c c sabathia's shoe size?

Updated: 10/31/2022
User Avatar

Wiki User

14y ago

Best Answer

According to the article below, by Samantha Carr; he wears a size 15 shoe.

4/21/09) - Growing up, my older brother and sister used to tease me about having wide feet and stubby toes. In fact, they nicknamed me Franklin Stubbs after the 1980s Dodgers first baseman and outfielder. I can look back and laugh at it now, but I can't imagine how much teasing CC Sabathia took growing up.

This week, Sabathia handed over his cleats from Opening Day at Yankee Stadium to Hall of Fame President Jeff Idelson -- and in the process, broke a new record in Cooperstown.

Mary Bellew, assistant registrar at the Hall of Fame, assures me that at size 15, Sabathia's shoes are the largest ever in our collection, breaking Ryan Minor's mark of 13 ½. Minor donated the cleats he wore Sept. 20, 1998, when he took over for Cal Ripken Jr. at third base after Ripken decided to end his record-breaking streak of consecutive games played at 2,632.

We also have shoes from 6-foot-10 and five-time Cy Young-winner Randy Johnson, but he is only a size 13.

Jeff also brought back the bat Grady Sizemore used to hit the first grand slam in the new park and a game-used commemorative Opening Day Baseball signed by winning pitcher Cliff Lee. They will be on display, along with Sabathia's cleats, in the Today's Game exhibit this summer

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is c c sabathia's shoe size?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How long does a shoe last for?

it depends what the size is. and the type of shoe a trainer your own size would last up to 6 onths


What does the s mean in shoe size?

Small.


C program to copy one matrix to another matrix?

#include main() { int array[100], minimum, size, c, location = 1; printf("Enter the number of elements in array\n"); scanf("%d",&size); printf("Enter %d integers\n", size); for ( c = 0 ; c < size ; c++ ) scanf("%d", &array[c]); minimum = array[0]; for ( c = 1 ; c < size ; c++ ) { if ( array[c] < minimum ) { minimum = array[c]; location = c+1; } } printf("Minimum element is present at location number %d and it's value is %d.\n", location, minimum); return 0; }


Array as primitive data members in c plus plus program?

C-style arrays can be used as data members, both as fixed-size arrays or as dynamic arrays. The following examples demonstrate how they could be used as one-dimensional data members. class a { private: int b[10] {0}; // in-class initialisation (all elements zero). public: int&amp; operator[] (unsigned index) { if (index&gt;=10) throw std::range_error(); return b[index]; } }; class c { public: c (unsigned sz=10): size(sz), p (size?new int[size]:nullptr) { memset (p, 0, size); } c (const s&amp; _s): size(_s.size), p (size?new int[size]:nullptr) { if (size) memcpy (p, _s.p, size); } c (s&amp;&amp; _s): size(_s.size), p (_s.p) { _s.p=nullptr; } // swap resources c&amp; operator= (const s&amp; _s) { if (p) delete [] p; size = _s.size; p = (size?new int[size]:nullptr); if (size) memcpy (p, _s.p, size); } c&amp; operator= (s&amp;&amp; _s) { size = _s.size; p = _s.p; _s.p=nullptr; } // swap resources ~c() { if (p) delete [] p; } int&amp; operator[] (unsigned index) { if (index&gt;=size) throw std::range_error(); return p[index]; } private: unsigned size {0}; int* p {nullptr}; }; A much simpler approach would be to use std::array&lt;int&gt; and std::vector&lt;int&gt; instead of primitive C-style arrays.


What is the Maximum limit of array size in c language?

Platform-dependent.