What is external and internal variables
What is dynamic memory allocation
what is storage classes in C
Answer Posted / s.gayathri
1.external variables can use it anywhere in the pgm &outside
the pgm.
internal variables can use only in the pgm.
2.allocation of memory during run time.it also save memory
space.
3.storage classes are type of variable.it has four type
global
extern
static
register
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is type qualifiers?
With the help of using classes, write a program to add two numbers.
Is c dynamically typed?
How can I send mail from within a c program?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
What is multidimensional arrays
What is the difference between call by value and call by reference in c?
What are qualifiers in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Add Two Numbers Without Using the Addition Operator
what is the structure pointer?
What is ambagious result in C? explain with an example.
Wt are the Buses in C Language
Why pointers are used?
How do you sort filenames in a directory?