What are logical errors and how does it differ from syntax errors?
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
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
how to find the size of the data type like int,float without using the sizeof operator?
Why main function is special give two reasons?
what is ans for this scanf(%%d",c);
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Why can't we initialise member variable of a strucutre
How do you redirect a standard stream?
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?
How can this be legal c?
difference between semaphores and mutex?
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