2 Star 0 Fork 0

狐皮先生/nb.c

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
4.19.cpp 1.91 KB
Copy Edit Raw Blame History
狐皮先生 authored 2023-04-19 23:46 . 类:一 4.19
//#include<iostream>
////
//////
//////int main()
//////{
////// const char* arr[] = { "abcd","6666","world hhhh" };
////// for (auto a : arr)
////// {
////// printf("%s\n", a);
////// }
////// int a = 10;
//////}
//////
//////int func()
//////{
//////
//////}
////
////
//////
//////void func(int a)
//////{
//////
//////}
//////
//////void func(int& a)
//////{
//////
//////}
//////
//////int main()
//////{
////// int b = 10;
////// func(b);
////// return 0;
//////}
////
//////void func(const int&b)
//////{}
//////
//////int main()
//////{
////// const double a = 1.11;
////// double &&b = (double)a;
////// b = 20;
////// func(1.11);
////// return 0;
//////}
//////
//////int unmask;
//////int mask = 10;
//////
//////int main()
//////{
////// int* p1 = (int*)malloc(10);
////// int* p2 = (int*)malloc(10);
////// int a1 = 10;
////// int a2= 10;
////// printf("&a1 = %p p1=%p", &a1, p1);
////// static int n1;
////// static int n2=10;
//////}
//////
//////void func(int& a, int& d)
//////{
//////
//////}
//////int main()
//////{
////// double a = 10
////// int b = 20;
//////
//////
//////}
////
////
//////#define ADD(X,Y) (((X)+(Y))*10)
//////
//////int main()
//////{
//////
//////
////// //printf("%d\n", ADD(10, 20));
////// return 0;
//////}
//////
//////int func()
//////{
//////
//////}
//////
//////void _func(int)
//////{
//////
//////}
////class MyClass
////{
////
////
////public:
//// MyClass();
//// ~MyClass();
//// int func();
////private:
//// int _top;
////};
////
////MyClass::MyClass()
////{
////}
////
////int MyClass::func()
////{
//// _top = 10;
//// return 10;
////}
////int func()
////{
////
//// return 20;
////}
////MyClass::~MyClass()
////{
////}
////int main()
////{
//// MyClass A;
//// MyClass B;
////}
////
////
//class A
//{
//public:
// A();
// ~A();
// void func()
// {
// _a = 10;
// }
//private:
// int _a;
//};
//
//A::A()
//{
//}
//
//A::~A()
//{
//}
//int main()
//{
// A aa;
// printf("%p", &A::func);
//}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mr-fox-skin/nb.c.git
git@gitee.com:mr-fox-skin/nb.c.git
mr-fox-skin
nb.c
nb.c
master

Search