Write a program to generate the Fibinocci Series
No Answer is Posted For this Question
Be the First to Post Answer
How do we print only part of a string in c?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
Explain the difference between strcpy() and memcpy() function?
what is a function pointer and how all to declare ,define and implement it ???
What is the use of a conditional inclusion statement in C?
What are qualifiers in c?
Why can't I perform arithmetic on a void* pointer?
What is a Genralised LInked List?? Please give a detailed explation of it..
Explain the use of keyword 'register' with respect to variables.
What are the general description for loop statement and available loop types in c?
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
What is structure and union in c?