°ïæ¸ÄÒ»¸öC³ÌÐò£¬Ð»Ð» - C/C++ / CÓïÑÔ
C/C++ code:
#include <stdio.h>
#include <string.h>
struct s1
{
char a[10];
};
struct s2
{
char b[10];
};
int main()
{
struct s1 *ps1;
struct s2 *ps2;
ps1->a ="wanggl";
strcpy(ps2->b,ps1->a);
printf("%s\n",ps2->b);
getchar();
return 0;
}
1>c:\documents and settings\administrator\×ÀÃæ\c51\te\te.cpp(16) : error C2440: ¡°=¡±: ÎÞ·¨´Ó¡°const char [7]¡±×ª»»Îª¡°char [10]¡±
int main()
{
struct s1 ps1;
struct s2 ps2;
strcpy(ps1.a ,"wanggl");
strcpy(ps2.b,ps1.a);
printf("%s\n",ps2.b);
getchar();
return 0;
}
C/C++ code:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
struct s1
{
char a[10];
};
struct s2
{
char b[10];
};
int main()
{
struct s1 *ps1;
struct s2 *ps2;
ps1 = (struct s1 *)malloc(sizeof(struct s1));
ps2 = (struct s2 *)malloc(sizeof(struct s2));
ps1->a ="wanggl";
strcpy(ps2->b,ps1->a);
printf("%s\n",ps2->b);
getchar();
return 0;
}
ÉÏÃæ¾¹È»Ã»·ÖÅäÄÚ
Ïà¹ØÎÊ´ð£º
ÇëÎÊVFPÖÐÈçºÎµ÷ÓÃC/C++º¯Êý£¿
ÄãÒªµ÷ÓÃʲô¹¦Äܵĺ¯Êý£¿Òª¿´¿´VFPÖÐÓÐûÓжÔÓ¦µÄº¯Êý£¬Èç¹ûÓоÍÊ¡×ÅÔÙµ÷ÓÃÁË¡£Èç¹ûûÓУ¬¿ÉÒÔ½«C/C++º¯Êýд¸öDLL»òFLL£¬È»ºóÔÚVFPµ÷Óü´¿É¡£
Ê®¶¹Èý ÀÏʦ£¬Ôõô²ÅÄÜÐÞ¸Ä×Ô¼ºµÄ ......
ËÄܰïÎÒ°ÑÏÂÃæÕâЩ´úÂë¸Ä³ÉVBÐÎʽµÄ£¬¶àлÁË£¬¼±ÓÃ~~
#include "stdlib.h"
#include "math.h"
#include "stdio.h"
float objfx(float x[]);
void constraint(float x[],float g ......
ͦ·±Ëö£¬Ö®Ç°·¢µÄÌû×Ó£¬·Öֵ̫µÍÏÖÔÚÖØ·¢Ò»¸ö¡£»¶Ó¸÷λ´óÏÀ~~
#include "stdlib.h"
#include "math.h"
#include "stdio.h"
float objfx(float x[]);
void constraint(float x[] ......
visual c++2008Ëٳɰ棬²»ÄܱàÒëC³ÌÐòÂð£¿Èç¹ûÄÜÊÇÔõô¿ªÊ¼µÄ°¡£¿ÓÃËü´øµÄÃüÁîÌáʾµ¥Ôª³ýÍâ ¡£
н¨¹¤³Ì£¨¿Õ¹¤³Ì»òwin32¿ØÖÆÌ¨£©
¾ø¶Ô¿ÉÒÔ¡£½¨Á¢win32¿ØÖÆÌ¨³ÌÐò¾Í¿ÉÒÔ
ÒýÓÃ
н¨¹¤³Ì£¨¿Õ¹¤³Ì»òwin32¿ØÖÆÌ¨£ ......
ÏÖÓÐparadoxÊý¾Ý¿âʹÓÃBDEÇý¶¯£¬Äâ¸ÄΪC/S°æ£¬Ôö¼ÓÍøÂç¶ÁÈ¡Êý¾Ý¹¦ÄÜ¡£ÇëÄÄλ´óÏÀ£¬ÌṩԴÂë¡£
˵¾ä²»¿ÍÆøµÄ»°£¬ÓÃparadox×öC/SÊÇ×ÔѰËÀ·¡£
»»Ò»¸öÍøÂçÊý¾Ý¿â
ÒòΪ²»Ï붯´óÊÖÊõ£¬½öÄܹ²Ïí¼¸¸öÎļþ¼´¿É¡£
Da ......