Giriş
Açıklaması
şöyle.
__LINE__ : expands to the source file line number, an integer constant, can be changed by the #line directive
Örnek
Şöyle
yaparız.
#include <iostream>
using namespace std;
int main()
{
cout<<__LINE__<<endl;
return 0;
}
Çıktı olarak şunu
alırız.
6
Hiç yorum yok:
Yorum Gönder