Answer Posted / sanjay bhosale
Void pointer is the pointer which can point to any type of variable.
e.g
int a=10;
float b=20.00f;
void *ptr=null;
ptr = &a;
ptr = &b;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why we use int main and void main?
Is c pass by value or reference?
What is memcpy() function?
Explain how can I avoid the abort, retry, fail messages?
What is void main ()?
how to write a c program to print list of fruits in alpabetical order?
Explain what does the function toupper() do?
What are the different types of data structures in c?
What is a char c?
What are comments and how do you insert it in a C program?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
if p is a string contained in a string?
What is the role of this pointer?
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]
What are the advantages of using linked list for tree construction?