vbscript怎么定义字符串

vbscript怎么定义字符串


倚天杖
浏览 858回答 3
3回答

小唯快跑啊

vbscript不是强类型语言你直接定义就可以了,不需要声明类型Dim Names(9) '声明一个具有 10 个元素的数组。Dim Names() ' 声明动态数组。Dim MyVar, MyNum ' 声明两个变量。dim strstr="这是一个字符串"

梵蒂冈之花

使用指针数组:#include &nbsp; <string.h>#include &nbsp; <stdio.h>#include &nbsp; <stdlib.h>int &nbsp; main(){char &nbsp; *test[]={ "this &nbsp; is &nbsp; a &nbsp; test ", &nbsp; "test &nbsp; 2 ", &nbsp; " "};int &nbsp; i=0;while(strcmp(test[i], &nbsp; " ") &nbsp; != &nbsp; 0)puts(test[i++]);system( "PAUSE ");return &nbsp; 0;}&nbsp;

慕盖茨4494581

可以用数组或指针数组:char s[80]="abcd";或者char s[80]={"abcd"}; /*说明:自动加字符串结束标志:\0*/char s[80]={"a","b","c","d","\0"};指针:char *s;char*s="abcd";注意:s是一个指针变量,有存空间,里面用来存放地址(字符型变量占用的存储空间地址)。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript