What does the characters “r” and “w” mean when writing programs that will make use of files?
No Answer is Posted For this Question
Be the First to Post Answer
Can you apply link and association interchangeably?
What is call by value in c?
Explain high-order and low-order bytes.
What's a "sequence point"?
to convert a string without using decrement operater and string functions
how can i get output like this? 1 2 3 4 5 6
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
How many levels of pointers can you have?
How can I handle floating-point exceptions gracefully?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
Can one function call another?