What are Storage Classes in C ?
Answer Posted / sowmi
There are 4 types of storage class namely such as
auto,extern,static,register,and also type def
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is this pointer in c plus plus?
Write a program to know whether the input number is an armstrong number.
What are local static variables?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
What is a good data structure to use for storing lines of text?
What is the general form of function in c?
How can I make sure that my program is the only one accessing a file?
Are the expressions * ptr ++ and ++ * ptr same?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is wild pointer in c?
Is that possible to add pointers to each other?
How many levels deep can include files be nested?
Why doesnt this code work?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What happens if a header file is included twice?