Miscellaneous Company Exam Company Programming Program

Main()
{
Char a[10][5]={"hi","hello","welcome"};
Printf("%s %s",a[2],a[3]);
}

Read Solution (Total 3)

Miscellaneous Company Exam Other Question

2. Calculate : (x-a)(x-b)(x-c)....(x-z)? Main()
{char a[6] = "INDIA";
while(*a)
{
printf("%c",*a);
a++;
}}