What are logical errors and how does it differ from syntax errors?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How would you print out the data in a binary tree, level by level, starting at the top?

6 Answers   Amazon, Microsoft,


how can we Declare a variable in c without defining it.

1 Answers   TCS,


#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?

1 Answers   Groupon,


What is the difference between abs() and fabs() functions?

0 Answers  


Which is better oop or procedural?

0 Answers  


C program to find frequency of each character in a text file?

6 Answers  


What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?

0 Answers  


What are the advantages of using new operator as compared to the function malloc ()?

0 Answers   NIIT,


What is call by value in c?

0 Answers  


Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout

0 Answers   XYZ,


What does the characters “r” and “w” mean when writing programs that will make use of files?

0 Answers  


code for reverse alternate words from astring

1 Answers   IBM,


Categories