You're not very good at asking questions, either.
And use code tags when posting code to preserve indentation.
What is the "11" in the title"?
And how can we possibly run your code?
Straining my eyes to look at your code I see you use a VLA, which is not only NOT part of legal C++, but also create the array on the stack, so if the product of n and col is too large you may be blowing the stack. Try replacing it with vector<vector<int>> sparseTabe(n, vector<int>(col));
And note that dhayden pointed out another definite problem. As is, the j < n has no effect at all. Your compiler should warn you about that. If not, increase the warning level (in g++ and clang++, adding flags -Wall -W -pedantic gives maximum warnings). And don't ignore warnings!