What do you mean by recursion in c?
No Answer is Posted For this Question
Be the First to Post Answer
swap two integer variables without using a third temporary variable?
What is the meaning When we write "#include" what is # and what does include does there???
Differentiate between a for loop and a while loop? What are it uses?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
What is data structure in c language?
What are macros in C?
what is the structure pointer?
which one is better structure or union?(other than the space occupied )
In C, What is the #line used for?
is it possible to change the default calling convention in c ?
how can i calculate mean,median,mode by using c program
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE