What do you mean by Recursion Function?
No Answer is Posted For this Question
Be the First to Post Answer
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
how can be easily placed in TCS.
Where are c variables stored in memory?
main is a predefined or user define function if user defined why? if predefined whay?
What is a symbolic constant?
What is the Difference between Class and Struct?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
WAP to find that given no is small or capital
What is I ++ in c programming?
What is typedef example?