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

Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4

3 Answers  


read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50

4 Answers   TCS,


how to find the size of the data type like int,float without using the sizeof operator?

13 Answers  


Why main function is special give two reasons?

0 Answers  


what is ans for this scanf(%%d",c);

1 Answers  


Explain how do I determine whether a character is numeric, alphabetic, and so on?

0 Answers  


Why can't we initialise member variable of a strucutre

1 Answers  


How do you redirect a standard stream?

0 Answers  


I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?

1 Answers  


How can this be legal c?

0 Answers  


difference between semaphores and mutex?

1 Answers  


how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help

5 Answers  


Categories