下列程序的输出结果是( )。
#include
using namespace std;
void main()
{
char a[] = "Hello, World";
har *ptr = a;
while (*ptr)
{
if (*ptr >= ‘a‘ && *ptr
AHELLO, WORLD
BHello, World
ChELLO, wORLD
D hello, world
相关试题
-
下列程序的输出结果是( )。 #include using namespace std; void main() { char a[] = Hello, World; har
-
现有程序: main() { int *ptr,*p[5],i; if((ptr=malloc(100*sizeof(int)))!=NULL) { p[0]=ptr; for(i=1;i
-
出现的次数*/ /*c[0]己录字母A或a的次数,c[1]记录字母B或b的次数,依此类推*/ ptr=______; /*ptr初始时指向字符串的首字符*/ while (
-
下面程序的输出结果是( ) #include using namespace std; int main( ) { int x=6,y=8; if(x++
-
程序的输出结果是( ) #include using namespace std; void fun(int x,int y,int z) { z=x*x+y*y; } int main