The code has an if statement that only affects the first printf call. The second printf is outside the if block, so it executes regardless of the condition. Since if(a==0) is true, the first printf executes and prints 'Cisco Systems', then the second printf also executes and prints another line with 'Cisco Systems', resulting in two identical lines.