cts_debugging_question
cts_debugging_question
int main()
int n;
scanf(“%d”, &n);
unsigned int i = n;
while(i >= 0)
printf(“%d\n”, i);
i–;
return 0;
Input: 4
unsigned int i = n; unsigned integer ranges from 0 to 65535, which will be taken in the cyclic order.
So i– will keep repeating in a cyclic way. The loop will never be terminated. So it should be written as
int i = n;
int main()
fact = fact * i;
printf(“%d”, fact);
return 0;
Input: 20
Output: -2102132736
The fact and n are declared as long int, so in scanf and printf %ld should be used in place of %d.
1111
222
33
void main()
int i, j, n;
scanf(“%d”, &n);
printf(“%d”, i);
printf(“\n”);
Input: 3
Output:
111
222
333
The inner for loop has to be written in this way: for(j = i-1; j<n; j++)
int main()
printf(“%d”, num1);
}
elseif(num2>num3)
printf(“%d”, num2)
else
printf(“%d”, num3);
return 0;
if (num1 > num2) && (num1 > num3) à it has to be written as if ((num1 > num2) && (num1 > num3))
and this line elseif(num2>num3) should be rewritten as else if(num2>num3)
5) Fix the error, recompile and match against the output provided.
int main(void)
return 0;
Corrected program:
int main(void)
void binarytodecimal(number)
void main()
int num;
scanf(“%d”, &num);
printf(“%d”, binarytodecimal(num);
Answer:
void binarytodecimal(number)
while(number > 0)
base = base * 2;
return dval;
}
7) Print the prime numbers from an array up to given value n by using existing function.
int main()
scanf(“%d”, &n);
if(isprime(m))
arr[size++]= m;
printf(“%d\n”, arr[i]);
return 0;
Answer:
int isprime(int num)
int i;
int isprime = 1;
if(num % i == 0)
isprime = 0;
break;
return isprime;
1) Find the syntax error in the below code without modifying the logic.
#include <stdio.h>
int main()
float x = 1.1;
switch (x)
break;
break;
}
return 0;
Answer:
#include <stdio.h>
int main()
int x = 1;
switch (x)
break;
break;
return 0;
The expression used in the switch must be an integral type (int, char, and enum). Any other type of
expression is not allowed.
void main () {
int i, j, n = 5;
for(j=i;j<n;j++);
{
printf(“%d”, i);
printf(“\n”);
Solution:
void main () {
int i, j, n = 5;
for(j=i;j<n;j++)
printf(“%d”, i);
printf(“\n”);
we use a semicolon in C statement to tell the compiler where’s the end of our statement. Second for
loop executes one time.
Find the index of equilibrium element in the given array. In an array equilibrium element is the one
where the sum of all the elements to the left side is equal to the sum of all the elements in the right
side.
Return Value:
1) Return -1 if no equilibrium element is found
2) In case there is more than one equilibrium element, return the element with least index value.
You are required to complete the given code by reusing the existing function. You can click on
Compile & run anytime to check the compilation/execution status of the program you can use printf
to debug your code. The submitted code should be logically/syntactically correct and pass all the test
cases.
We do not expect you to modify the approach or incorporate any additional library methods.
Test Case:
a[] = {1,2,3,4,3,3}. 4 is the equilibrium element since its left side sum (1+2+3) is equal to its right side
sum (3+3)
#include <stdio.h>
int sum = 0, i;
{
sum += a[i];
return sum;
int sum = 0, i;
sum += a[i];
return sum;
int main() {
//code
int a[10], n, i;
// get the elements count
scanf(“%d”, &n);
scanf(“%d”, &a[i]);
if(equiIndex != -1) {
printf(“%d”, a[equiIndex]);
return 0;
Solution:
int sum = 0, i;
sum += a[i];
}
return sum;
int sum = 0, i;
sum += a[i];
return sum;
int i;
return i;
}
return -1;
int main() {
//code
int a[10], n, i;
scanf(“%d”, &n);
scanf(“%d”, &a[i]);
if(equiIndex != -1) {
printf(“%d”, a[equiIndex]);
return 0;