°ïæ¸ÄÒ»¸ö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;
}
ÉÏÃæ¾¹È»Ã»·ÖÅäÄÚ
Ïà¹ØÎÊ´ð£º
дÁ˸ö²âÊÔ³ÌÐòÈçÏÂ
struct hostent *hp;
char AlarmDevIP[20];
int x2;
hp = gethostbyname("www.google.com");
if (hp)
{
......
ÔÚ¸ùĿ¼/libÖдæ·ÅÒ»¸ölog.c£¬log.h£¬²¢ÓÃÏÂÃæµÄÓï¾ä£º
gcc -c log.c
ar crv liblog.a log.o
±àÒë³öÒ»¸öliblog.a¾²Ì¬¿â£¬È»ºóÔÚÎļþ¼Ð£º/testfileÖд´½¨Ò»¸ötest.cºÍtestc.c£¬test.cÖÐÒýÓÃÁËtestc.cÖж¨ÒåµÄ·½·¨ ......
ͦ·±Ëö£¬Ö®Ç°·¢µÄÌû×Ó£¬·Öֵ̫µÍÏÖÔÚÖØ·¢Ò»¸ö¡£»¶Ó¸÷λ´óÏÀ~~
#include "stdlib.h"
#include "math.h"
#include "stdio.h"
float objfx(float x[]);
void constraint(float x[] ......
visual c++2008Ëٳɰ棬²»ÄܱàÒëC³ÌÐòÂð£¿Èç¹ûÄÜÊÇÔõô¿ªÊ¼µÄ°¡£¿ÓÃËü´øµÄÃüÁîÌáʾµ¥Ôª³ýÍâ ¡£
н¨¹¤³Ì£¨¿Õ¹¤³Ì»òwin32¿ØÖÆÌ¨£©
¾ø¶Ô¿ÉÒÔ¡£½¨Á¢win32¿ØÖÆÌ¨³ÌÐò¾Í¿ÉÒÔ
ÒýÓÃ
н¨¹¤³Ì£¨¿Õ¹¤³Ì»òwin32¿ØÖÆÌ¨£ ......