HI,
I wud like to know the meaning of hard coding ....and a simple example...
thanks
I wud like to know the meaning of hard coding ....and a simple example...
thanks
#define SIZE 100 int arr[100]; ///Here 100 is being hard coded int newarr[SIZE];
#include <stdio.h> int main() { for (int i= 0; i < 10; i++) printf("Hello world!\n"); return 0; }
Comment