logo

CuriousTab

CuriousTab

Programming problems


  • 1. Write a c program to check whether a number is strong or not.
  • Discuss
  • 2. Write a c program to print multiplication table
  • Discuss
  • 3. Write a c program for selection sort.
  • Discuss
  • 4. Write a c program for quick sort.
  • Discuss
  • 5. Write a c program for insertion sort.
  • Discuss
  • 6. Write a c program for merge sort.
  • Discuss
  • 7. Write a c program for binary search.
  • Discuss
  • 8. Write a program for matrix multiplication in c
  • Discuss
  • 9. Write a c program to copy a data of file to other file.
  • Discuss
  • 10. What will be output of following c code? void main() { struct india { char c; float d; }; struct world { int a[3]; char b; struct india orissa; }; struct world st ={{1,2,3},'P','q',1.4}; clrscr(); printf("%dt%ct%ct%f",st.a[1],st.b,st.orissa.c,st.orissa.d); getch(); }
  • Discuss

First 10 Last