Why is c so important?
No Answer is Posted For this Question
Be the First to Post Answer
when user give a number it multiply with 9 without useing '+' and '*' oprator
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What does d mean?
Can you write the function prototype, definition and mention the other requirements.
What is #include called?
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 storage class?
how to use showbits function?
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
What is a memory leak in structures? How can we rectify that?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"