oc

#import <Foundation/Foundation.h>   //导入foundation.h文件

//    C语言函数声明

void MyFun(BOOL bol);

int main(int argc, const char * argv[])

{

    @autoreleasepool  //系统自动生成的,能释放内存

    {

        int num=100;

        double price=12.25;

        char sex='M';

        char *chs="jajdnknksnkdnkndkn";

        NSLog(@"%d,%f,%c",num,price,sex);

        NSLog(@"%s",chs);

        

//      布尔类型  YES   NO

        BOOL ispass;

        ispass=YES;

        MyFun(NO);

        ispass=NO;

         NSLog(@"%d",ispass);

    }

    return 0;

}

 

//     函数实现   bol 判断考试是否通过

void MyFun(BOOL bol)

{

    if (bol==YES) {

        NSLog(@"考试通过");

    }

     else

        NSLog(@"考试未通过");

}

你可能感兴趣的:(oc)