what is diff between localstatic and globalstatis variable
possible 2 use in another file...?
Answer Posted / guest
localstatic belong to that only that function .
globalestatic belong 2whole file. not possible.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
plz let me know how to become a telecom protocol tester. thank you.
how many key words availabel in c a) 28 b) 31 c) 32
write an algorithm to display a square matrix.
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
Explain what will the preprocessor do for a program?
Do character constants represent numerical values?
What is page thrashing?
How do we open a binary file in Read/Write mode in C?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is the difference between strcpy() and memcpy() function in c programming?
Explain what is the difference between text files and binary files?
When should you not use a type cast?
main() { printf("hello"); fork(); }
how should functions be apportioned among source files?
Write a program to check prime number in c programming?