本文目录一览

1,C语言指针一道简单的编程题

按照你的要求编写的C语言程序如下123456789101112131415161718include<stdio.h>int main() int a,b; int *p=&a; a=30; printf("a=%d\n",*p); p=&b; scanf("%d",p); a=*p+24; printf("a=%d,b=%d",a,b); return 0;} 运行结果a=3076a=100,b=76

C语言指针一道简单的编程题

2,简单的C语言指针编程题

#include <iostream>#include <string>using namespace std;int main(int argc,char *argv[]) int pos; string s1,s2; cout<<"s1:"; cin>>s1; cout<<"s2:"; cin>>s2; cout<<"insert position:"; cin>>pos; s1.insert(s1.begin()+pos,s2.begin(),s2.end()); cout<<"s1:"; cout<<s1<<endl; return 0;}

简单的C语言指针编程题

3,C语言指针简单习题刚学的指针程序别太复杂

第一题#include <stdio.h>void fun1(char* str, int m, int k) char* p = &str[m - 1]; while (p - str < m + k - 1) printf("%c", *p); p++; }}int main() char str[100]; int m, k; scanf("%s%d%d", str, &m, &k); fun1(str, m, k); return 0;}第二题 #include <stdio.h>void fun2(char* str1, char* str2) char* p = str1; char* q = str2; while (*p && *q) if (*p > *q) return 1; } else if (*p < *q) return -1; } else p++; q++; } } if (*p) return 1; } return -1;}int main() char str1[100], str2[100]; scanf("%s%s", str1, str2); fun2(str1, str2); return 0;}

C语言指针简单习题刚学的指针程序别太复杂


文章TAG:c语言指针编程例题简单c语言  语言  指针  
下一篇