How long does it take to learn C language by yourself?
As a programming language, C language has gone through a lot of hardships in its development. We always say that what programmers do is type code every day, but just typing code can never learn the deeper knowledge contained in the C language.
So, if you learn C language solidly, you may be able to say that you are getting started in about 5 years, and you may say that you have mastered it in about 10 years, but when it comes to mastering, it is not something that most people can do. imagination.
What is Getting Started
When you are a beginner, you hold a C language programming book and look at the code in the book, full of doubts in your heart , why I can’t understand these, this shows that a beginner has not yet understood some common language knowledge of C language. Then you need to start to understand everything about C language.
When you have memorized all this beginner's book, it does not mean that you have started. You just remember that there is such a name, but do you know where it came from? Therefore, when we learn C language, especially beginners, we often only stay on the surface of memory without going deep.
So, when you understand its principles, remember its rules, and know all the basic things, then you are still not considered an entry-level person. Maybe at this level, you can only be a junior novice, and you can't even talk about getting started.
After you study C language seriously for four years in college, or after you study C language by yourself for 4 or 5 years, look back. You will find that C language becomes clearer and clearer in your eyes, and it is no longer as brain-consuming as it was before. At this time, you will slowly find that your door to C language seems to be opened, and you will continue to understand its status, depth and other strange things you have never seen before. Then at this time you can say , you have already started learning C language. Because you don't seem to feel the same way about it as you did about your first love.
Do you know if you have mastered it?
In the programmer’s coding career, college programmers begin to contact enterprises , started working on projects, and self-taught people started to come into contact with software, and they also started working on projects. But doing projects is also linked to C language, so can you say that you must master C language when you are doing projects?
The answer is definitely no. Let’s think about it. Can we claim that we are proficient in C language? I don’t dare to say it, and I believe everyone doesn’t dare to promote themselves in this way. They are all just beginning to practice in society, and they all participate in work based on the level of knowledge. There is no absolute starting point and no absolute end point. So think about it again, how can we be proficient in C language and how can we be recognized by others? I think hard work and diligence are inseparable, coding is a must, and continuous improvement of oneself is also a must.
Diligent people will always be favored by God. Yes, 10 years is so long, but the knowledge laid in the first 5 years and the continuous application in the next 5 years are enough for 10 years. A person's rebirth is enough to give a person a different sublimation. Then this is when you know that you have mastered a lot of things. The C language is like your organ, slowly beginning to integrate with you. At this time, you begin to master it and begin to slowly come into contact with its soul. .
At this time, when it comes to mastery, it may not be a fantasy anymore. You can see it, and the intangible things are getting closer and closer in front of your eyes, but you just can't reach it. Being proficient in C language is not scary, the scary thing is where you go to see it.
These are what C/C can do
Server development engineer, artificial intelligence, cloud computing engineer, information security (hacker anti-hacker), big data , data platform, embedded engineer, streaming media server, data control solution, image processing, audio and video development engineer, game server, distributed system, game assistance, etc.
C language from entry to proficiency, you know it distance? Maybe it's just ahead, but you haven't seen it yet.
Recommended: "c Language Tutorial"
The above is the detailed content of How long does it take to learn C language by yourself?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



C language data structure: The data representation of the tree and graph is a hierarchical data structure consisting of nodes. Each node contains a data element and a pointer to its child nodes. The binary tree is a special type of tree. Each node has at most two child nodes. The data represents structTreeNode{intdata;structTreeNode*left;structTreeNode*right;}; Operation creates a tree traversal tree (predecision, in-order, and later order) search tree insertion node deletes node graph is a collection of data structures, where elements are vertices, and they can be connected together through edges with right or unrighted data representing neighbors.

The truth about file operation problems: file opening failed: insufficient permissions, wrong paths, and file occupied. Data writing failed: the buffer is full, the file is not writable, and the disk space is insufficient. Other FAQs: slow file traversal, incorrect text file encoding, and binary file reading errors.

C language functions are the basis for code modularization and program building. They consist of declarations (function headers) and definitions (function bodies). C language uses values to pass parameters by default, but external variables can also be modified using address pass. Functions can have or have no return value, and the return value type must be consistent with the declaration. Function naming should be clear and easy to understand, using camel or underscore nomenclature. Follow the single responsibility principle and keep the function simplicity to improve maintainability and readability.

How to output a countdown in C? Answer: Use loop statements. Steps: 1. Define the variable n and store the countdown number to output; 2. Use the while loop to continuously print n until n is less than 1; 3. In the loop body, print out the value of n; 4. At the end of the loop, subtract n by 1 to output the next smaller reciprocal.

C language multithreading programming guide: Creating threads: Use the pthread_create() function to specify thread ID, properties, and thread functions. Thread synchronization: Prevent data competition through mutexes, semaphores, and conditional variables. Practical case: Use multi-threading to calculate the Fibonacci number, assign tasks to multiple threads and synchronize the results. Troubleshooting: Solve problems such as program crashes, thread stop responses, and performance bottlenecks.

Algorithms are the set of instructions to solve problems, and their execution speed and memory usage vary. In programming, many algorithms are based on data search and sorting. This article will introduce several data retrieval and sorting algorithms. Linear search assumes that there is an array [20,500,10,5,100,1,50] and needs to find the number 50. The linear search algorithm checks each element in the array one by one until the target value is found or the complete array is traversed. The algorithm flowchart is as follows: The pseudo-code for linear search is as follows: Check each element: If the target value is found: Return true Return false C language implementation: #include#includeintmain(void){i

Troubleshooting Tips for C language processing files When processing files in C language, you may encounter various problems. The following are common problems and corresponding solutions: Problem 1: Cannot open the file code: FILE*fp=fopen("myfile.txt","r");if(fp==NULL){//File opening failed} Reason: File path error File does not exist without file read permission Solution: Check the file path to ensure that the file has check file permission problem 2: File reading failed code: charbuffer[100];size_tread_bytes=fread(buffer,1,siz

C language functions are reusable code blocks. They receive input, perform operations, and return results, which modularly improves reusability and reduces complexity. The internal mechanism of the function includes parameter passing, function execution, and return values. The entire process involves optimization such as function inline. A good function is written following the principle of single responsibility, small number of parameters, naming specifications, and error handling. Pointers combined with functions can achieve more powerful functions, such as modifying external variable values. Function pointers pass functions as parameters or store addresses, and are used to implement dynamic calls to functions. Understanding function features and techniques is the key to writing efficient, maintainable, and easy to understand C programs.
