What is clrscr ()?
No Answer is Posted For this Question
Be the First to Post Answer
What are enums in c?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
What is a dynamic array in c?
Write a program in c to input a 5 digit number and print it in words.
What is difference between function overloading and operator overloading?
C program to perform stack operation using singly linked list
How can you read a directory in a C program?
Is using exit() the same as using return?
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
If we give two names then this displays the connection between the two people. It is nothing but flames game
write a program to delete an item from a particular location of an linear array?
Explain what is the benefit of using const for declaring constants?