what are the static variables
Answer Posted / nil
Static vairiable is one which can be accessed without
creation of an object of Class i.e. by direct calling calss.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is string length in c?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Can a void pointer point to a function?
Explain how can you determine the size of an allocated portion of memory?
List out few of the applications that make use of Multilinked Structures?
Differentiate between #include<...> and #include '...'
What does the format %10.2 mean when included in a printf statement?
What is #include cctype?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What is main function in c?
Where are the auto variables stored?
How to declare pointer variables?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?