name the language for writing c compiler?
Answer Posted / abhinav singh
Trans-mo-grifiers(TMG)
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
How was c created?
What is the difference between new and malloc functions?
How can I implement sets or arrays of bits?
What is #error and use of it?
Why do we use main function?
What is the purpose of clrscr () printf () and getch ()?
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?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is "Hungarian Notation"?
What is a char in c?
Write a program to print fibonacci series using recursion?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is the argument of a function in c?
What is the value of uninitialized variable in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?