What is the use of
in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of the fflush() function in C?
How do you generate random numbers in C?
what will happen if you free a pointer twice after allocating memory dynamically ?
What is the use of structure padding in c?
Give differences between - new and malloc() , delete and free() ?
How do you view the path?
Why C language is a procedural language?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Is c high or low level?
What is meant by int fun const(int a, int b) { .... ... }
What is the difference between typeof(foo) and myFoo.GetType()?