Answer Posted / kartik
The main() function represenrs starting of the program.When
ever we write main in program the system analyse starts from
tthere
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is function prototype in c with example?
List some applications of c programming language?
Do character constants represent numerical values?
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?
number of times a digit is present in a number
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is array of structure in c programming?
Can you add pointers together? Why would you?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
How important is structure in life?
What are pointers? Why are they used?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Where static variables are stored in c?
What are the __date__ and __time__ preprocessor commands?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.