What are advantages and disadvantages of recursive
calling ?
Answers were Sorted based on User's Feedback
Answer / poonam yadav
by using this tag we call a function continuosly uptill
to specific condion
| Is This Answer Correct ? | 8 Yes | 24 No |
Answer / deepak soni
the advantage of recursion is
1). by using this tag we call a function continuosly uptill
to specific condion
| Is This Answer Correct ? | 3 Yes | 29 No |
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
write a program to copy a string without using a string?
Write a program to add a given duration with time(24hrs format)
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Which weighs more, a gram of feathers or a gram of gold?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
What is the difference between a free-standing and a hosted environment?
What is identifiers in c with examples?
Is c weakly typed?
What does typeof return in c?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
Why c is called a mid level programming language?