Please list all the unary and binary operators in C.
Answer Posted / jai tushar
assignment operator (=)
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
What is fflush() function?
If I have a char * variable pointing to the name of a function ..
What is a stream in c programming?
What are the two types of structure?
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]
Array is an lvalue or not?
What is the use of a semicolon (;) at the end of every program statement?
What is actual argument?
Why is main function so important?
Explain null pointer.
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Explain what are multidimensional arrays?
What is a good data structure to use for storing lines of text?
What is the difference between malloc calloc and realloc in c?
How are strings stored in c?