I just want to find some short key for sublime text 4 that maybe not even exist (I tried to find it on google so if he exist sry my bad X:)...
question: sometimes I write program that will be easier to test (if it working correctly) using comments, I mean by that comment everything else what inside the same function without that piece of code that I wanna test.
for ex: (I just wanna run, print hello 3 and hello 4)
#librarys ...
int main(){
//printf("hello 1");
//printf("hello 2");
printf("hello 3");
printf("hello 4");
//printf("hello 5");
return 0; }
(im using c if its relevant) someone knowing some info that could be helpful?