A lot of things are wrong.
1. The for loop
{ for(j=0 , j<0 , j++ )
for (initialization_expression;loop_condition;increment_expression){..}
If any of them is missing, leave them blank, but you do need the semicolons.
Even then j=0;j<0
makes no sense as a condition.
2. Misspelling
You misspelled lp as pl within the second for-loop.
3. main
You did not specify a return type for main. This isn't being reported but is the old-style and shouldn't be used anymore.
4. Dynamic allocation
That isn't the way to allocate a 2-D array dynamically.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…