Hey all,
I have decided that in order to learn i will need to write code. So i am working on all the questions on my book. And as I am teaching myself i end up with no-one to scrutinize my code.
#include <iostream>
/************Declarations of Functions*********/
void func1();
void func2();
//=============================================Tue 28 Apr 2009 18:37:48 IST//
/* Global Test Variables */
int const max_length=18;
int quest_count=0 ;
char input_line[max_length]="???sky???";
int main()
{
func1();// Character string with While loop
std::cout<<"No Of Question Marks = " << quest_count<< "\n";
quest_count=0;
func2();//Pointer Based Passing.
std::cout<<"No Of Question Marks(Pointer Based) = " << quest_count<< "\n";
}
void func1()
{
int i=0;
while(i<max_length)
{
if(input_line[i]=='?')
quest_count++;
i++;
}
}
void func2()
{
char *ptr=input_line;
while(*ptr!=0)
{
if(*ptr=='?')
{
quest_count++;
}
*ptr++;
}
}
The above program counts the number of "?" marks in a string passed to it.
I would like to recieve comments on the code :) and any improvements that can be made.