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 |
Why c is procedure oriented?
What is the difference between variable declaration and variable definition in c?
What is the need of structure in c?
Explain what are bus errors, memory faults, and core dumps?
How do you determine if a string is a palindrome?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
3.write a simple program that will output your name,phone number,e-mail address,and academic major on separate lines 1.create an account and a personal directory for your work b.find out how to create a subdirectory on your system.create one called info c.you will use a text editor to type in your programs and data files.some C systems have a built in text editor;others do not.Find out what text editor you will be using and how to access it.create a text file(not a program) containing your name ,address,and telephone number on separate lines.Next,write the brand of computer you are using and the name of the text editor.Then write a paragraph that describes your past experience with computers.save this file in your info directory. d. find out how to print a file on your system .print out and turn in the file you created in (c).
What is uint8 in c?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What is calloc() function?
What is indirect recursion? give an example?
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.