What is the use of static variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
what do the 'c' and 'v' in argc and argv stand for?
Why cann't whole array can be passed to function as value.
What are the different data types in C?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is the difference between union and structure in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is difference between union All statement and Union?
Write a program to interchange two variables without using the third variable?
17 Answers Accenture, College School Exams Tests, Infotech,
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
what is the diference between pointer to the function and function to the pointer?
Write a program to print “hello world” without using semicolon?
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision