Crack Em Code

Come grab your articles on C.. I am a budding engineering grad trying to survive in the world of engineering.. i would love it if you all gave me important topics to cover so that i write in good code and give them to you too!

Thursday, 24 December 2015

Deleting An Element in Array Using C

›
#include <stdio.h>   int main() { int array[100], position, c, n;   printf("Enter number of elements in array \n "); ...
1 comment:

Reverse an Array in C

›
C program to reverse an array: This program reverses the array elements. For example if a is an array of integers with three elements such ...
1 comment:

Binary Search in C

›
Assuming that the numbers are in ascending order :  #include <stdio.h>   int main() { int c, first, last, middle, n, search, a...

Linear Search in C programming

›
#include <stdio.h>   int main() { int array[100], search, c, n;   printf("Enter the number of elements in array \n ")...

Minimum Element in an Array

›
#include <stdio.h>   int main() { int array[100], minimum, size, c, location = 1;   printf("Enter the number of element...

To Find Maximum Element in An Array

›
#include <stdio.h>   int main() { int array[100], maximum, size, c, location = 1;   printf("Enter the number of elements in ...

Add Integers using Pointers in C

›
#include <stdio.h>   int main() { int first, second, *p, *q, sum;   printf("Enter two integers to add \n "); scanf...
1 comment:
›
Home
View web version

Contributors

  • Aditya Bharwani
  • Unknown
Powered by Blogger.