what is difference b/w extern & volatile variable??
Answer Posted / mani
extern variables are stored in CPU ,volatile variables are
temporary.
| Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
Explain the red-black trees?
What is typedf?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is printf () in c?
Which header file is used for clrscr?
Write a program which returns the first non repetitive character in the string?
What is an arrays?
What are loops c?
Why is void main used?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
How can you pass an array to a function by value?
Why is sizeof () an operator and not a function?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Why flag is used in c?
What is a volatile keyword in c?