Why is C language being considered a middle level language?
No Answer is Posted For this Question
Be the First to Post Answer
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
WAP to find that given no is small or capital
What's the difference between calloc() and malloc()?
What is difference between array and pointer in c?
What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?
What is the difference between variable declaration and variable definition in c?
Whether there can be main inside another main?If so how does it work?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
Explain the difference between struct and union.
what is the difference between structural,object based,object orientd programming languages?
Why do we write return 0 in c?
What is meant by 'bit masking'?