What is p in text message?
No Answer is Posted For this Question
Be the First to Post Answer
a program that can input number of records and can view it again the record
What is union and structure in c?
what is the difference between %d and %*d in c languaga?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
How can I remove the trailing spaces from a string?
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() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
Is c compiled or interpreted?
What is a rvalue?
What is a spanning Tree?
How many types of errors are there in c language? Explain
Write a program to reverse a given number in c language?