NSLogのcharデータを出力する

2018年5月13日

サンプルコード:
#import <Foundation/Foundation.h>

int main(int argc, charchar * argv[])
{
@autoreleasepool {
char a = 'a’;
char b = 100;
char c = '\n’;

NSLog(@"a = %d", a);
NSLog(@"b = %c", b);
NSLog(@"c = %d", c);
}
}

IOS

Posted by arkgame