Explain what will the preprocessor do for a program?
No Answer is Posted For this Question
Be the First to Post Answer
How do c compilers work?
What is strcpy() function?
Explain which function in c can be used to append a string to another string?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Which is better malloc or calloc?
A program to allow an input operand and operator from the operator and read on the display and output operand.
What is clrscr in c?
In C, What is the #line used for?
What is static and auto variables in c?
Why doesn't C support function overloading?