Define the scope of static variables.
No Answer is Posted For this Question
Be the First to Post Answer
What is hash table in c?
How many data structures are there in c?
In which header file is the null macro defined?
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
what is the height of tree if leaf node is at level 3. please explain
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
What is the difference between malloc() and realloc()?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
When should a type cast not be used?
can any one tel me wt is the question pattern for NIC exam
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.