ਇਕ ਸਟਰਿੰਗ ਨੁੰ ਡਿਕਲੇਅਰ ਅਤੇ ਇਨਸ਼ਲਾਈਜੇਸ਼ਨ ਕਰਨ ਲਈ ਪ੍ਰੋਗਰਾਮ ਲਿਖੋ।

#include <stdio.h>
#include <conio.h>

void main()
{
    char str[20]="Hello";
   
    puts(str);
    getch();
}

Output:


Comments