How the processor registers can be used in C ?
Answer Posted / muthukumar
using the keyword register.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is a pointer on a pointer in c programming language?
Find MAXIMUM of three distinct integers using a single C statement
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What does. int *x[](); means ?
why we wont use '&' sing in aceesing the string using scanf
What are run-time errors?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
What are shell structures used for?
Explain how do you convert strings to numbers in c?
Write a program to print fibonacci series using recursion?
What is the use of extern in c?
What is an example of structure?
How many levels of pointers can you have?
What is I ++ in c programming?
Why does this code crash?