下面的代码哪里错了?编译器不报错,选择菜单时出错
C/C++ code:
#include<stdio.h>
#include<ctype.h>
void strput(char *str[],int n);//输出初始字符串列表
void strasc(char *str[],int n);//按ascii码输出字符串
void strlong(char *str[],int n);//按长度递增顺序输出字符串
void str ......
大家做C/S程序,客户端的程序集有做混淆吗?
发现飞信的客户端没有做混淆。
防君子不防小人
微软自带了,你看下
我知道微软VS自带了dotfuscator,我是在问大家有没有做混淆。
不用作,做混淆防什么?防准?
没做过混淆,没太多的必要性
感觉大项目才没必要混淆,源码不值钱,关键是架构。
真正有价值的 ......
内容涉及:C、C++、STL、VC++、MFC、COM、ATL、Windows网络编程、数据库编程、Windows驱动编程、软件工程、Windows操作系统编程,等等方面。
下载地址:http://www.cctry.com/forumdisplay.php?fid=46
VC驿站 - http://www.cctry.com
C、C++、VC++ 编程 学习 免费教程 精品电子书 精品源码 期待您的加 ......
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define MAXCOUNT 2*100
char *transfromation(char *str)
{
int len = strlen(str);
char *buf = new char[len + 1];
char *p = str;
char *q ......
#include <iostream>
#include <string>
using namespace std;
class Student
{
public:
void get_value()
{cin>>num>>name>>sex;}
void display()
{
cout < <"num:" < <num < <endl;
cout < <"name:" ......
现在有关c++、c的书籍,那些书是较深层次的?请介绍几本?
#include <iostream>
using namespace std;
int funhion(int x, int y )
{
int m,n;
if(x>=y)
{
m=y;n=x;
}
if(y>x)
{
n=y;m=x;
}
wh ......