Answer Posted / hon prajakta
ASCII stands for American Standard Code for Information Interchange.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is sizeof int in c?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What are the parts of c program?
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
What is header file in c?
What does %d do?
Explain what is a const pointer?
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 the basis for selection of arrays or pointers as data structure in a program
What is unsigned int in c?
Compare and contrast compilers from interpreters.
What is a substring in c?
Why ca not I do something like this?
How will you write a code for accessing the length of an array without assigning it to another variable?
What are dangling pointers in c?