What is the difference between a string and an array?
No Answer is Posted For this Question
Be the First to Post Answer
When would you use a pointer to a function?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
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
character array A[12] can hold
What is #define?
What are the advantages and disadvantages of pointers?
How to find a missed value, if you want to store 100 values in a 99 sized array?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
what is a function pointer and how all to declare ,define and implement it ???
writw a program to insert an element in the begning of a doubly linked list
how can we use static and extern?and where can we use this?