what is a non volatile key word in c language?
Answer / vishnu
There is no non volatile key word in C.
we have volatile const
we have const
we have volatile key words.
| Is This Answer Correct ? | 4 Yes | 0 No |
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
Explain the difference between the local variable and global variable in c?
What are the back slash character constants or escape sequence charactersavailable in c?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What are the advantages of the functions?
Why is void main used?
how to sort two array of characters and make a new array of characters.
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
write a own function for strstr
What is the right way to use errno?
If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 Answers Microsoft, Motorola,
What is a rvalue?