What are the different types of storage classes in C?
Answer Posted / glibwaresoftsolutions
Auto: Default storage class for local variables.
Static: Retains variable value between function calls.
Extern: Refers to global variables used in other files.
Register: Suggests storing variables in the CPU register.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a spanning Tree?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Explain how can you tell whether a program was compiled using c versus c++?
what are enumerations in C
What are the differences between new and malloc in C?
What is function definition in c?
What is a pointer in c?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
What are the functions to open and close file in c language?
What is typeof in c?
c program for searching a student details among 10 student details
Define VARIABLE?
What is extern keyword in c?
find out largest elemant of diagonalmatrix
How can I convert a number to a string?