Answer Posted / shobana
variables in C can have not only data type but also storage
class that provides information about their location and
visibility. The storage class decides the portion of the
program within which the variables are recognized.
| Is This Answer Correct ? | 38 Yes | 7 No |
Post New Answer View All Answers
Can include files be nested? How many levels deep can include files be nested?
What is a method in c?
Is malloc memset faster than calloc?
difference between Low, Middle, High Level languages in c ?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Differentiate between the = symbol and == symbol?
Is null always equal to 0(zero)?
What is register variable in c language?
Can you please explain the difference between malloc() and calloc() function?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Explain the use of fflush() function?
What is the use of c language in real life?
Explain what is the purpose of "extern" keyword in a function declaration?