main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}

Answer Posted / ismail

garbage value

Is This Answer Correct ?    5 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)

1744


Explain what does the format %10.2 mean when included in a printf statement?

934


What is a dynamic array in c?

671


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

778


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

776






How can a process change an environment variable in its caller?

759


How do you print only part of a string?

695


how can use subset in c program and give more example

1581


How pointer is different from array?

684


How do you sort filenames in a directory?

818


a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above

819


Why is it that not all header files are declared in every C program?

772


Difference between pass by reference and pass by value?

740


a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.

4658


What is the difference between scanf and fscanf?

749