How the processor registers can be used in C ?

Answer Posted / rahul singh

ACTUALLY PROCESSOR REGISTER ARE USED TO STORE THE DATA OR
RESULT DURING THE EXECUTION OF THE PROGRAM. PROCESSOR
REGISTER ARE CALLED MEMORY REGISTER.THE ACCESS TIME OF THIS
MEMORY IS VERY FAST.

Is This Answer Correct ?    9 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of a static variable in c?

585


What do header files do?

596


Why is struct padding needed?

623


What is data structure in c programming?

565


What are the complete rules for header file searching?

662






which type of aspect you want from the student.

1697


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

909


what are enumerations in C

716


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

1984


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

2568


Explain two-dimensional array.

619


How do you construct an increment statement or decrement statement in C?

733


explain what is an endless loop?

604


What are variables c?

608


Explain how do you convert strings to numbers in c?

588