## Prospects for the future and a summary of the first C language course

Prospects for the future and a summary of the first C language course

1. First introduce myself.
I am a junior from Xi’an University of Finance and Economics. I love sports (fitness, basketball, badminton, etc.). Compared with the above sports, just walk away and travel may appeal to me. Bigger
2. Next, talk about your programming goals,
based on C/C++, learn java and web at a deeper level to achieve the combination of front-end and back-end
3. Finally, talk about yourself and then learn each course
first in the classroom Follow up with the teacher’s idea. The
second is the practice after class. Make sure to have 2-3 hours of practice programming time
every day. Finally, make a summary every day.

After class summary

The first section learned what C language is, and wrote the first C language program to output "hello world"

#include<stdio.h>
int main()
{
    
    
 printf("hello world");
 return 0;
}

Summary of small knowledge points: 1. Select code Ctrl+c+k comment
2./* +code*/ comment
3. There can only be one main entry function in a project

Guess you like

Origin blog.csdn.net/weixin_50886514/article/details/109718782