CPP 019 – Whitespace

Boşluk, satır atlama vb şeylere whitespace diyoruz. C++ için ne kadar white space kullandığınızın bir önemi yoktur. İsterseniz bir isterseniz on boşluk bırakın. Önemli olan şey: sıralamasının doğru bir şekilde olması. Örnek:

#include <iostream> 
using namespace std;int main() {cout << "hello" << endl;}

Yukarıdaki kodla aşağıdaki kodun compiler açısından hiçbir farkı yoktur.

#include <iostream> 
using 
namespace 
std;
int 
main(

)   
{
	
	
cout 
<<            "hello"


<<          endl        ;         }

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *