Kneel down and ask for C language, and introduce C language

Updated on technology 2024-02-26
9 answers
  1. Anonymous users2024-02-06

    Hey! This is a very simple function to write, Your Excellency is estimated to have just learned data structures, now learn sorting, lookup, it's easy to give me a reward of two hundred points, I'll help you write it right away.

    You newly build a structure that contains:"Student information structure", one pointing"Student information structure"and an unsigned int num form a node model of a linked list, where an unsigned shape is used to represent the number of students learned. Then define a pointer p to a node of that type

    Now I'm on to your question.

    0)p->num=null;The initialization is completed in one sentence, and the substitution to your function is t->num=null;

    1) You already know the length of your linked list, and the output items are just that.

  2. Anonymous users2024-02-05

    The two upstairs said well, if you do it yourself, you will have a great gain, this program is actually very simple, it is ** many, be patient with yourself, do it well, what do you don't understand can be put forward again, it is impossible to simply throw out the whole program and ask others to help you do it.

  3. Anonymous users2024-02-04

    The boss of the computer department... Learning is hard work...

    Do you know how complicated and cumbersome this is?,Unless someone has done it before and gave it to you directly.,Otherwise, even if you offer a reward of 100 points, no one will do it for you now.。。。

  4. Anonymous users2024-02-03

    Brother, we're all engaged in IT, and we still have to rely on ourselves to study these things.

  5. Anonymous users2024-02-02

    c language. Programming languages, for example:

    Most of the operating systems you use now are written in C.

    There is also office software that is also written in C language.

    C is a computer programming language. It has the characteristics of both high-level language and assembly language. It can be used as a system design language to write working system applications, or as an application design language to write applications that do not rely on computer hardware.

    As a result, it has a wide range of applications.

    C is significantly better than other interpreted high-level languages for operating systems and system programs, as well as for hardware operations, and some large applications are also written in C.

    The C language has strong drawing ability, portability, and strong data processing ability, so it is suitable for writing system software, 3D, 2D graphics and animation. It is a high-level language for numerical calculations.

  6. Anonymous users2024-02-01

    The landlord is probably new to computer languages.

    The language that computers can recognize is the most basic binary language, which 0101001010011 these numbers, but we invented a high-level language in order to improve efficiency and recognition rate when writing programs, and one of the high-level languages is the C language. It is different from the binary language that the computer can recognize, so after the writing is completed, in order for the computer to execute, it is necessary to convert the program written in our high-level language into a binary language through some intermediary software, so that it can be recognized and executed by the computer.

    Generally speaking, the kind of software you are talking about is collectively called "compilation software", I use, there are many of these types of software now, you can look up the relevant information on the Internet. Moreover, the software industry varies from language to language, and there are many kinds of compilation software for the same language. Therefore, the building mainly chooses the compilation software with high evaluation.

    The landlord can not only test the written knowledge of the C language, but also the actual hands-on operation, no matter how much you see, how familiar you are, if there is no practical operation, no hands-on writing program, then you still can't improve your level. So the landlord must understand the compilation software. I hope you deepen your knowledge of this! Thank you!

  7. Anonymous users2024-01-31

    Books in the C language?

    Find a C compiler.

  8. Anonymous users2024-01-30

    The kind of software you want is called a C compiler, and there are many of them on the market now, both commercial and open source.

  9. Anonymous users2024-01-29

    C compilers, such as Dev C++, Visual C++, etc. (the former is recommended).

Related questions
16 answers2024-02-26

Definition of a for loop.

for(the initial value of the variable; termination of operating conditions; The initial value of the first cycle i is 0, and it runs until i=3 stops i=2, and the condition is still satisfied, and the loop body is still executed, and the step size is 1+1 each time >>>More

7 answers2024-02-26

It's called the [batch] program, in fact, don't think that the program you mentioned above to deal with garbage is really powerful, it's amazing, when you have learned DOS, that program can be said to be a very simple thing; >>>More

4 answers2024-02-26

2. 1, True 2, False (there is only one program) 3, False (not necessarily) 4, True. >>>More

15 answers2024-02-26

C++ is an object-oriented language, not very easy to learn, because it is more flexible, so there are a lot of problems to consider when doing programs! Because of the direct operation of the hardware, it inherits the advantages of the C language, so it is very efficient, and is generally used for the underlying and embedded systems.

9 answers2024-02-26

Scope. You static char *chh;

static char *ch1;Although the address pointed to by the two pointers does not change, have you ever wondered whether the memory address they point to has been released, char chc[10]; It's local, the function is out, the lifecycle is over, and you're trying to access it with a pointer in void times(). >>>More