欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

学习日志1

程序员文章站 2022-06-29 21:01:03
...

学习日志1
姓名:张诗颖 日期:2018.9.10
今日学习任务:
安装开发环境,熟练掌握软件运用,回顾c语言基础知识并通过实践操作成功运行程序。
今日任务完成情况:
成功运行老师教的每一个程序,并且灵活运用了各种基础知识

课堂新知识:
vim * .c 写程序 a 插入
esc 退出
shift z z 退回界面
gcc * .c -o * 编译文件
./* 执行该程序

int 整型 4个字节
double双精度实型 8个字节
float 实型(浮点型)4个字节
short 短整型 2个字节
long 长整型 4个字节
char 字符变量说明 1个字节

1个字节是8位,4个字节为32位
int *p=&a;把地址赋给指针
所有指针占4个字节

学习中出现的问题: c语言基础不够扎实,很多基本东西已经遗忘
学习成果:能熟练运用软件并且很多基础知识都已经记起,编译过程中的错误也能及时纠正

作业
题3

#include<stdio.h>
#include<string.h>

int fun(char *a, char *b)
{
    int len_b;
    int count = 0;
    int num = 0;
    char *temp = b;

    len_b = strlen(b);

    while (*a != '\0')
    {
        if (*a == *temp)
        {
            while ((*a == *temp) && (*a != '\0') && (*temp != '\0'))
            {
                num++;
                a++;
                temp++;
            }
            if (num == len_b)
            {
                count++;
            }
            num = 0;
            temp = b;
        }
        else
        {
            a++;
        }
    }

    return count;
}

int main()
{
    char a[100];
    char b[10];
    int num;

    printf("Enter the main string(<=100)!\n");
    scanf("%s",a);
    printf("Enter the substring(<=10)!\n");
    scanf("%s",b);
    num = fun(a,b);
    printf("The number is:%d\n",num);

    return 0;
}

题4

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void fun(char *s,char *t)
{

}
int main()
{
    char str[] = "I am from Shanghai";
    char *p1 = str;
    char *p2 = str+strlen(str)-1;
    char temp;
    char *p3 = NULL;
    while(p1<p2)
    {
        temp = *p1;
        *(p1++) = *p2;
        *(p2--) = temp;
    }
    puts(str);
    p1 = str;
    p2 = str;
    while(*p2)
    {
        if(*p2 == ' ')
        {
            p3 = p2 - 1;
            while(p1<p3)
            {
                temp = *p1;
                *(p1++) = *p3;
                *(p3--) = temp;
            }
            p1 = p2 + 1;
        }
        p2++;
    }

    p3 = p2-1;
    while(p1<p3)
    {
        temp = *p1;
        *(p1++) = *p3;
        *(p3--) = temp;
    }
printf("%s",str);
return 0;
} 
相关标签: 嵌入式设计