what do you mean by defining a variable in our c code?
Answer Posted / jugad
Defining a variable means declare its data type , i.e
declaration of data type is very important in c it may be
int, float , long , unsigned,
and initialisation is not so important if you are not
initilize any variable compiler just initialize some garbage
value to that variable.
Courtesy:
http://answerwale.co.cc/?p=24#comment-20
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
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]
Can you please explain the scope of static variables?
What is a void pointer in c?
Why is c known as a mother language?
Describe wild pointers in c?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Is c object oriented?
Is c procedural or object oriented?
What does a pointer variable always consist of?
What is difference between union All statement and Union?
How macro execution is faster than function ?
What does calloc stand for?
How many data structures are there in c?
Is flag a keyword in c?
Array is an lvalue or not?