Answer Posted / nashiinformaticssolutions
A pointer is a variable that stores the memory address of another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Wt are the Buses in C Language
What is getch?
What functions are in conio h?
What is infinite loop?
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 is meant by initialization and how we initialize a variable?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
When should you use a type cast?
How to define structures? ·
What is call by value in c?
what is stack , heap ,code segment,and data segment
Between macros and functions,which is better to use and why?
Explain pointers in c programming?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?