What are register variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
give an example of type casting by a simple c program
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
why we shiuld use main keyword in C
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
What does the file stdio.h contain?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
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]
main() { int a; a=++100; printf("%d",a); getch(); }
say the following declaration is correct nr not. int b=a,n=0;
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
Explain what are reserved words?