how many argument we can pas in in a function
Answer Posted / preeti
depending upon the range of the datatype
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Can you pass an entire structure to functions?
Is return a keyword in c?
Write a program to print numbers from 1 to 100 without using loop in c?
What is break statement?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
How can I read data from data files with particular formats?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What is a example of a variable?
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 the difference between the = symbol and == symbol?
What is C language ?
What’s the special use of UNIONS?
What is the difference between union and structure in c?
What are shell structures used for?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.