language: C++ 4.7.2 (gcc-4.7.2)
date: 825 days 21 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
#include <iostream>
 
using namespace std;
 
int main() {
        char* sweat ="Sweater";
        return 0;
}
prog.cpp: In function ‘int main()’:
prog.cpp:6: warning: deprecated conversion from string constant to ‘char*’
prog.cpp:6: warning: unused variable ‘sweat’