differentiate built-in functions and user – defined functions.
No Answer is Posted For this Question
Be the First to Post Answer
What is multidimensional arrays
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is malloc calloc and realloc in c?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
How was c created?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
Explain how can I convert a string to a number?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
What is a shell structure examples?
What is a char in c?