1
1

notnull.cpp 119 B

123456
  1. #include <iostream>
  2. int main(){
  3. if(!NULL){printf("look a potato"); }
  4. if(!nullptr){printf("look a tomato"); }
  5. }