在c语言或者php 怎么将两个或多个常量连接起来,比如一个常量为1 另一个常量为2 连接成12

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在c语言或者php 怎么将两个或多个常量连接起来,比如一个常量为1 另一个常量为2 连接成12相关的知识,希望对你有一定的参考价值。

在c语言或者php 怎么将两个或多个常量连接起来,比如一个常量为1 另一个常量为2 连接成12连接后形成一个新的常量为12

#define M 1
#define N 2
#define P MN
参考技术A 深奥追问

咋啦

参考技术B 1 乘10加2

C语言编写一个程序,将两个字符串连接起来,不要使用strcat函数

#include "stdio.h"
void main()

    char a[50],b[50],c[50];
    int i=0,j=0,k=0;
printf("输入第一个字符串");
gets(a);
printf("输入第二个字符串");
gets(b);
    printf("a=%s\\n",a);
    printf("a=%s\\n",b);
    while(a[i])c[k++]=a[i++];
    while(b[j])c[k++]=b[j++];
    c[k]=b[j];
    printf("c=%s",c);

已经运行过,有什么问题请留言!

参考技术A //函数是以前写的,测试通过,如果有疑问,欢迎交流
//依次输入两个字符串就行
#include<stdio.h>
#define N 100
void cur_stract(char *src, char* tar)
int cur_count = 0;
while(src[cur_count]!='\\0')
cur_count++;

int tar_cur_count = 0;
while(tar[tar_cur_count]!='\\0')
src[cur_count] = tar[tar_cur_count];
tar_cur_count++;
cur_count++;

src[cur_count] = '\\0';

int main()
char a[N], b[N];
gets(a);
gets(b);
cur_stract(a,b);
puts(a);
return 0;

参考技术B 函数头我就不和你写了!
int a[20],b[20],i=0,j=0;
while(a[i]!='\0')

i++;

while(b[i]!='\0')

a[i++]=b[i++];

a[i]='\0';
printf("%s",a);

就可以了!!

以上是关于在c语言或者php 怎么将两个或多个常量连接起来,比如一个常量为1 另一个常量为2 连接成12的主要内容,如果未能解决你的问题,请参考以下文章

Oracle中 能连接两个或多个字符的运算符是啥

C语言如何实现两个非常量的CHAR字符串连接

C语言:将两个字符串连接起来。

Arduino怎么连接多个字符串,组成一个新的字符串

从C语言快速学PHP

用c语言如何连接两个中文字符串?