Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
No Answer is Posted For this Question
Be the First to Post Answer
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Why n++ execute faster than n+1 ?
What is signed and unsigned?
Explain low-order bytes.
How will you delete a node in DLL?
How can I sort a linked list?
What is string length in c?
Explain spaghetti programming?
What is the full form of getch?
Is return a keyword in c?
What is the data segment that is followed by c?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }