Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
No Answer is Posted For this Question
Be the First to Post Answer
What is the explanation for the dangling pointer in c?
Who developed c language?
List some applications of c programming language?
what is the differance between pass by reference and pass by value.
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is define directive?
What is the difference between union and anonymous union?
Explain how to reverse singly link list.
What is the real time usage volatile?
what is the coding of display the factorial of a number using array and function?