#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
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
why u join this call center?
What is call by value in c?
What is union and structure in c?
Compare interpreters and compilers.
What is a pointer on a pointer in c programming language?
Explain Function Pointer?
what is the maximum limit of row and column of a matrix in c programming. in linux .
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
What is pragma in c?
What are dangling pointers? How are dangling pointers different from memory leaks?
Is null always defined as 0(zero)?