what are threads ? why they are called light weight
processes ? what is the relation between process and threads ?
thread is an execute the more process an single process
| Is This Answer Correct ? | 2 Yes | 1 No |
What is the use of volatile?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
where do we use volatile keyword?
What is difference between constant pointer and constant variable?
What is the use of #define preprocessor in c?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
who is the editor of 'pokemon'?
why java is called as a purely oops language.
What is a structural principle?
Why is %d used in c?
What is the difference between %d and %i?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }