what is the significance of static storage class specifier?
No Answer is Posted For this Question
Be the First to Post Answer
What are variables c?
wap to print "hello world" without using the main function.
What is a null pointer in c?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
What are the different types of linkage exist in c?
Can you please compare array with pointer?
What are header files and what are its uses in C programming?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
Code for calculating square root without using library function, of math.h
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
Explain zero based addressing.