what is available in C language but not in C++?
Answer Posted / chandrasekhar
c progrm donein top to bottom apparoch but c++bottom to top
apparoch
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
Explain how can I convert a string to a number?
What is getch?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is data structure in c programming?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is preprocessor with example?
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?
Are c and c++ the same?
What is output redirection?
What is variable initialization and why is it important?
What is I ++ in c programming?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What is function prototype in c language?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What was noalias and what ever happened to it?