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 ctrl c called?
What is %d called in c?
Explain the difference between malloc() and calloc() in c?
How can I read a binary data file properly?
Do you know the difference between exit() and _exit() function in c?
Are the outer parentheses in return statements really optional?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is a good way to implement complex numbers in c?
difference between Low, Middle, High Level languages in c ?
What are the different types of data structures in c?
How can I manipulate individual bits?
How can you check to see whether a symbol is defined?
Why void main is used in c?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What are the different types of control structures?