0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[例題の為の例題] 〇 if( ((char *)"ABC") == ((char *)"ABC") ){を評価して遊ぶ

0
Last updated at Posted at 2026-05-02

#include <iostream>
#include <string.h> //strcmp関数を使う為
using namespace std;
int main(void){
    // Your code here!
    
    if( ((char *)"ABC") == ((char *)"ABC") ){
        printf("true");
    } else {
        printf("false");
    }//endif
    
}


true

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?