Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
1 8079If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
6 9786f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
7 10754f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
5 8117helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
3 7897helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
2 6450
What is the data segment that is followed by c?
Write a code to generate a series where the next element is the sum of last k terms.
What’s a signal? Explain what do I use signals for?
What are the advantages of c language?
In C programming, what command or code can be used to determine if a number of odd or even?
what is ur strangth & weekness
Why is c called a mid-level programming language?
Describe how arrays can be passed to a user defined function
What does typeof return in c?
What is the size of enum in c?
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]
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What are the three constants used in c?
Describe the header file and its usage in c programming?
Is linux written in c?