Whats wrong with my code

#include
using namespace std;
int main() {
int arr [100][100],n,m,k,s;
cin>>n>>m>>k>>s;
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
cin>>arr[i][j];
}
}
for(int i=0;i<n;i++){
if(s<k) {cout<<“No”;return 0;}
for(int j=0;j<m;j++){
if (arr[i][j]==’.’){
j++;s–;s-=2;

		}
	   else if (arr[i][j]=='*'){
			j++;s--;s+=5;
		}
		else {
			s--;
			break;
		}
	}
}if(s>k){
	cout<<"Yes"<<endl<<s;
}
return 0;

}

hello @sr7.shubhamrai please share your code by saving it on ide.codingblocks.com

what test cases am i failing???

hey @sr7.shubhamrai wait i am debugging it .

bhaiya kya test csae galat hai???

hey @sr7.shubhamrai https://ide.codingblocks.com/s/383597
this is the correted code:
if you have any doubt you can ask here.
Happy learning !!

what was wrong with my code???

you need to be patient.

hey @sr7.shubhamrai i have corrected your code only.
please see the code.
i have made corrections

i have not given you some other code.