Saturday, February 5, 2011

Common Bugs

1.     Omitting the ampersand before the variables used in scanf(  ).
For example,
int choice ;
scanf ( " %d ", choice ) ;
 
Here, the & before the variable choice is missing. Another common mistake with scanf( ) is to use blanks either just before the format string or immediately after the format string as in,
int  choice ;
scanf ( " %d ", choice ) ;
 
Note that this is not a mistake, but till you don't understand scanf( ) thoroughly, this is going to cause trouble. Safety is in eliminating the blanks. Thus, the correct from would be,
int choice ;
scanf ( " %d ", &choice ) ;
2.    Using the operator = instead of the operator ==.
What do you think will be the output of the following program:
main( )
{
int i = 10 ;
while ( i = 10 )
{
printf ( "got to get out" ) ;
i++ ;
}
}
 
At first glance it appears that the message will be printed once and the control will come out of the loop since i becomes 11. But, actually we have fallen in an indefinite loop. This is because the = used in the condition always assigns the value 10 to i, and since i is non-zero the condition is satisfied and the body of the loop is executed over and over again.
3.     Ending a loop with a semicolon. Observe the following program.
main(  )
{
int j = 1 ;
while ( j <= 100 ) ;
{
printf ( "\nCompguard" ) ;
j++ ;
}
}
 
Inadvertently, we have fallen in an indefinite loop. Cause is the semicolon after while. This in effect makes the compiler feel that you wanted the loop to work in the following manner:
while ( j <= 100 ) ;
 
By all means an indefinite loop since j never gets incremented and hence eternally remains less that 100.
4.    Omitting the break statement at the end of a case in a switch statement. Remember that if a break is
not included at the end of a case then execution will continue into the next case.
 
main( )
{
int ch = 1 ;
switch ( ch )
{
case1 :
printf ( "\nGoodBye" ) ;
case 2 :
printf ( "\nLieutenant" ) ;
}
}
 
Here, since the break has not been given after the printf( ) in case 1, the control runs into case 2 and executes the second printf( ) as well. However, this sometimes turns out to be a blessing in disguise, especially, in cases when we are checking whether the values of a variable equals a capital letter or a small case letter.
4.     Using continue in a switch. It is a common error to believe that the way the keyword break is used with while, for, do-while and a switch, similarly the keyword continue can also be used with them. Remember, continue works only in loop, never with a switch.
5.     A mismatch in the number, type and order of actual and formal argument.
yr= romanise ( year, 1000, 'm' ) ;
 
Here, three arguments in the order int, int and char are being passed to romanise( ). When romanise( ) receives these arguments they must be received in the same order by the formal arguments. A careless mismatch might give strange results.
6.    Omitting provisions for returning non-integer value from a function.
If we make the following function call, 
area = area_circle ( 1.5 ) ;
 
then while defining area_circle( ) function later in the program, care should be taken to make it capable of returning a floating point value. Note that unless otherwise mentioned, the compiler will assume that function returns a value of the type int.
7.     Inserting a semicolon at the end of a macro definition. How do you recognize a C programmer? Ask him to write a paragraph in English and watch whether he ends each sentence with a semicolon. This usually happens because a C programmer becomes habitual to ending all statements with a semicolon. However, a semicolon at the end of a macro definition might create a problem.
For example,
#define UPPER 25;
 
would lead to a syntax error if used in an _expression such as 
if ( counter == UPPER )
 
This is because on preprocessing the if statement would take the form
if ( counter == UPPER; )
8.      Omitting parentheses around a macro expansion.
#define SQR(x) x*x
main( )
{
int a ;
a=25 / SQR ( 5 ) ;
printf ( "\n%d", a ) ;
}
 
In this example we expect the value of a to be 1, whereas it turns out to be 25. This so happens because on
preprocessing the arithmetic statement takes the following form:
a = 25 / 5 * 5 ;
9.      Leaving a blank between the macro template and the macro expansion.
#define ABS (a) ( a=0 ? a : -a )
 
Here, the space between ABS and (a) makes the preprocessor believe that you want to expand ABS into (a), which is certainly not what we want.
10.     Using an _expression that has side effects in a macro call.
#define SUM(a) (a+a)
main( )
{
int w, b = 5;
w= SUM ( b++ ) ;
printf ( "\n%d", w ) ;
}
On preprocessing the macro would be expanded to, w=(b++) +(b++); If you are wanting to first get sum 5 and 5 and them increment b to 6, that would not happen using the above macro definition.
11.      Confusing a character constant and a character string
In the statement
ch = 'z';
 
a single characters is assigned to ch. In the statement
ch = "z"
a pointer to the characters string "a" is assigned to ch.
 
Note that in the first case, the declaration of ch would be,
char ch ;
 
whereas in the second case it would be,
char*ch;
13.   Forgetting the bounds of an array.
main( )
{
int num[50], i ;
for ( i =1; i <= 50 ; i++ )
num[i] = i * i ;
}
 
Here, in the array num there is no such element as num[50]. Since array counting begins with 0 and not 1. Compiler would give no warning if our program exceeds the bounds. If not taken care of, in extreme cases the computer might even hang. 
14.     Forgetting to reserve an extra location in a character array for the null terminator. Remember each characters array ends with a '\0', therefore its dimension should be declared big enough to hold the normal characters as well as the '\0'.
For example, the dimension of the array word[ ] should be 9 if a string "Jamboree" is to be stored in it.
15.    Confusing the precedence of the various operations.
main( )
{
char ch ;
FILE *fp ;
fp = fopen ( "text.c", "r" ) ;
while ( ch = getc ( fp ) != EOF )
putch ( ch ) ;
fclose ( fp ) ;
}
 
Here, the value returned by getc( ) will be first compared with EOF, since != has a higher priority than =. As a result, the value that is assigned to ch will be the true/false result of the test: 1 if the values returned by getc( ) is not equal to EOF, and 0 otherwise. The correct from of the above while would be,  
while ( ( ch = getc ( fp ) ) != EOF )
putch ( ch ) ;
16.    Confusing the operator -> with the operator '.', while referring to a structure element. Remember, on the left of the operator '.' only a structure variable can occur, whereas on the left of the operator -> only a pointer to a structure can occur. 
main( )
{
struct emp
{
char name[35] ;
int age ;
} ;
struct emp e = {"Dubhashi", 40 } ;
struct emp *ee ;
printf ( "\n%d", e.age ) ;
ee = &e ;
printf ( "\%d", ee -> age ) ;
}
17.    Forgetting to use the far keyword for referring memory location beyond the data segment.
main( )
{
unsigned int*s; s = 0x413 ;
printf ( "\n%d", *s ) ;
}
 
Here, it is necessary to use the keyword far in the declaration of variable s, since the address that we are storing in s (0x413) is address of a location present in BIOS Data Area, which is far away from the data segment. Thus, the correct declaration would be unsigned int far*s ; 
18.      Exceeding the range of integers and chars.
main( )
{
char ch ;
for ( ch = 0 ; ch <= 255 ; ch++ )
printf ( "\n%c %d, ch, ch ) ;
}
 
Can you believe that this is an indefinite loop? Probably, a closer look would confirm it. Reason is, ch has been declared as a char and the valid range of char constant is -128 to +127. Hence, the moment ch tries to become 128 (through ch++), the value exceeds the character range, therefore the first number from the negative side of the range, i.e. -128, gets assigned to ch. Naturally the condition is satisfied and the and the control remains within the loop eternally.

No comments:

Post a Comment

Feel free to comment......