So the problem is 
which I think is pretty straight-foward by using Fourier transform and convolution property of two sinc functions and evaluating the convolution at 5. However, I got sinc(t) for the convolution result(So the answer is sinc(5)?). But when I use matlab to check, it says that the result is 100sinc(t)(again 100sinc(5))? I'm really confused and got stuck here.
The convolution theorem states that a convolution of two functions is equal to the inverse FT of the product of the FTs of each of the functions. That is,
$$\int_{-\infty}^{\infty} dx' \, f(x') g(x-x') = \frac1{2 \pi} \int_{-\infty}^{\infty} dk \, F(k) G(k) e^{-i k x}$$
where
$$F(k) = \int_{-\infty}^{\infty} dx \, f(x) e^{i k x}$$ $$G(k) = \int_{-\infty}^{\infty} dx \, g(x) e^{i k x}$$
So when each of $f$ and $g$ are $\operatorname{sinc}{x} = \sin{x}/x$, then $F(k) = G(k) = \pi 1_{[-1,1]} $.
Then
$$\int_{-\infty}^{\infty} dx' \operatorname{sinc}{x'} \operatorname{sinc}{(x-x')} = \frac{\pi}{2 \pi} \int_{-1}^1 dk \, e^{i k x} = \operatorname{sinc}(x)$$
So, yes, the answer to your question is $\operatorname{sinc}(5)$. No idea how Matlab could return what it did.