What is realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not 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
Write a program to print factorial of given number using recursion?
What is zero based addressing?
atoi, which takes a string and converts it to an integer. 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
Why C language is a procedural language?
what is mean by Garbage collection ? Please answer me. Advance thanks.
what is the most appropriate way to write a multi-statement macro?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Write a program to find whether the given number is prime or not?
A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon