answersLogoWhite

0


Best Answer

Define 'low level memory' first.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How does C programming give access to low level memory?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What jobs can you get with an associates degree in computer programming?

Wondering the same, wish someone would answer. With associate degree in computer programming you can get an entry-level programming job in a fairly short amount of time. It can also be used as a stepping stone to a bachelors degree in a technology field. Associate degree in computer programming give students hands-on skills they need to be productive software developers in many industries, using specific skill sets and programming languages.


Give an example of a procedural programming?

Popular one is C.


What is poiner value in c?

In c a pointer is a variable that points to or references a memory location in which data is stored. Each memory cell in the computer has an address that can be used to access that location so a pointer variable points to a memory location we can access and change the contents of this memory location via the pointer. Pointer declaration A pointer is a variable that contains the memory location of another variable. The syntax is as shown below. You start by specifying the type of data stored in the location identified by the pointer. The asterisk tells the compiler that you are creating a pointer variable. Finally you give the name of the variable. type * variable name Example: int *ptr; float *string;


Why do robots need to be programmed?

Technically, robots don't need to be programmed, but it will be harder to get full functionality otherwise. Programming allows you to give the robot a series of commands to operate it. These commands can include, but are not limited to: Movement, sight, audio, sensors and operation of ulterior tools.However, that is not the only way to get a robot to move. Technically you could go to the fundamental level, and wire a robot in such a way as to force it to certain actions. However this can be considered an extremely low level programming. The earliest computers for example, back when they were vacuum tubes, weren't really "Programmed", and it takes no programming to get a LED to turn on with a breadboard. Using logic gates, it is possible to have a fully wired robot without any programming.


Give advantages of manual data input CNC Programming?

manual data input is cheap

Related questions

How does c give access to low level memory?

Define 'low level memory' first.


Sequential and random access memories?

give the examples of sequential access memory?


What memory access time will give the best performance?

Type your answer here... 50 milliseconds


How does a computer programer idenify a particuler part of the memory in a computer program?

Each part of the computer memory - each byte, in modern computer architectures - has an associated address, a number. Usually the programmer will be programming in a high-level language, which, instead of accesing memory directly by its address, uses a symbolic name - called a variable - to refer to this address. It is up to the programmer to give variables their names. The programmer should try to keep these names meaningful. If the programming language allows longer names, don't abbreviate variable names to one or two letters.


Which memory access time will give you the best performance 50 milliseconds 50mircoseconds 50nanoseconds 500nanoseconds?

500 nanos or 50 micro


What is the defimtition of ram in a computer?

Random Access Memory - used to give your computer faster speed when using more complex programs


Describe how you can access the CMOS RAM?

The CMOS RAM, or computer motherboard operation system with rapid access memory can be accessed through the bios during startup. Typically repeatedly pushing the key F10 with give access.


What if your Secret security clearance gives you access to all information at the Secret level?

Secret clearance does not give you access to all information at the Secret level. It only gives you information on a kneed to know basis.


What are used to give a specific level of access to multiple users through a single management action?

Groups


What are a good programming languages for programming artificial intelligence systems?

LISP is designed for AI programming, give that a try.


How do you get to the ruins in fossil fighters?

To gain access to the ancient ruins you must beat Rosie with a level 12 Tarbo and a level 12 Tyrannosaurus on your team. Then you must speak to Dr. Diggins and he will give you access to the ancient ruins.


What is a disadvantage of using a high-level programming language over a low-level programming language?

Why did High level programming languages evolve? To make it more easier for the programmer to understand and write code. High level programming languages like C, C++ and Java give you comfort and a pool of options because they basically use a syntax that is similar to the everyday English we speak. Coding a computer today is just one step below to talking to a human. It is that easy. Now, why are low-level programming languages important? Low level programming languages are important because of space and speed. If you write a program in a high level language, say Java, first the Java Compiler will compile it to byte code. Now, this byte code is again compiled during run time to assembly code(low level) which in turn is again converted to executable code. But, when you write low level code, it is directly converted into executable code avoiding all the other steps. This will incredibly save you space and increase speed. That is the reason why Bill Gates said that 1MB is the unreachable limit. However, the time consumed to write a program will be very large. Because, at low level, you have to manage everything: memory and everything. For further more explanation, contact Bhaktavatsalam @ bhaktuksn@yahoo.co.in. I will always answer your question to the largest extent I know. If I don't I will try to know it and tell you.