#include
using namespace std;
int main(){
signed CodingBlocks = 9;
short double Nagarro = 8.8;
signed char HackerBlocks = ‘A’;
cout<<CodingBlocks<<endl;
cout<<Nagarro<<endl;
cout<<HackerBlocks<<endl;
return 0;
}"
in 4th line before Codingblocks ,there is no data type but compiler doesn’t show any error ,why?
but in 5th line compiler shows a error ?