#include
main()
{
char s[] = "Bouquets and Brickbats";
printf("
%c, ",*(&s[2]));
printf("%s, ",s+5);
printf("
%s",s);
printf("
%c",*(s+2));
}
No Answer is Posted For this Question
Be the First to Post Answer
Describe how arrays can be passed to a user defined function
What is a pointer on a pointer in c programming language?
What is #include stdlib h?
which of 'arrays' or 'pointers' are faster?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
What is size of union in c?
Function to find the given number is a power of 2 or not?
Explain high-order bytes.
write a program which counts a product of array elements lower than 10.
write a program to count the no of repaeted words in a line?
What is class and object in c?
Differentiate between static and dynamic modeling.