문제

I'm new to programming, and I'm working in C. I know that this is structured programming but if I use blocks, say for local variables:

{
 int i;
 for(i=0; i<25; i++){
   printf("testing...\n");
   }
}

Doesnt this make it kind of object oriented-like? Is this still structured?

올바른 솔루션이 없습니다

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 softwareengineering.stackexchange
scroll top