Answer Posted / teja
array : array is a collection of similar datatypes like
integer types or character types
string : string is a collection of characters of any size
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What does d mean?
What is console in c language?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Tell me what is null pointer in c?
Is stack a keyword in c?
What is scope rule in c?
What is #include cctype?
What is fflush() function?
Where are some collections of useful code fragments and examples?
What is a floating point in c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What does the characters “r” and “w” mean when writing programs that will make use of files?
how many errors in c explain deply
List out few of the applications that make use of Multilinked Structures?
write a program to rearrange the array such way that all even elements should come first and next come odd