what is the difference between static variable and register
variable?
Answer Posted / koti pendem
static variables stored in initialised data segment,where as
register variables stored in registers
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
Differentiate Source Codes from Object Codes
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What does c mean before a date?
Explain about block scope in c?
What are the 5 types of organizational structures?
Explain what is the concatenation operator?
Are the outer parentheses in return statements really optional?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Explain how can I remove the trailing spaces from a string?
What is a lookup table in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
In a header file whether functions are declared or defined?