Hello I am using Turbo C... I just have some query, I found a code of TC in a book but I'm not satisfied with the given clarification. Here's the code:
main()
{
int count = -1; /* why it was initialized as -1? */
char ch;
printf("Type in a phrase:\n");
ch = 'a'; /* why it was initialized as 'a'? */
while (ch != '\r') /* perform while ch is not equal to return */
{
ch = getche();
count++; /* increment the count */
}
printf("\nCharacter count is %d", count); /* prints the value of count */
}
Thanks in advance!
Character count isis when you type 1,2,3 or n characters? And do note that\*is not a comment. A multi-line comment in C starts with a forward slash such as/*. Also your commentI'm not satisfied with the given clarificationreally conveys no intent. What is your question? – Zabba May 14 '11 at 8:57ch = 'a'assignment is whydo whileloops exist. – ninjalj May 14 '11 at 9:46