Answer Posted / dileep kumar
C is named bcz it id based on compiler.and descover after ADA , BASIC ,COBOL
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Here is a good puzzle: how do you write a program which produces its own source code as output?
Is a pointer a kind of array?
Why main is used in c?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
Explain what is the difference between functions getch() and getche()?
if p is a string contained in a string?
What is #line?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Why do we use int main?
What are runtime error?
Differentiate call by value and call by reference?
Does c have enums?
Explain what’s a signal? Explain what do I use signals for?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none