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
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)
Explain what does the format %10.2 mean when included in a printf statement?
What is a dynamic array in c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
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)
How can a process change an environment variable in its caller?
How do you print only part of a string?
how can use subset in c program and give more example
How pointer is different from array?
How do you sort filenames in a directory?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Why is it that not all header files are declared in every C program?
Difference between pass by reference and pass by value?
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.
What is the difference between scanf and fscanf?