Answer Posted / raji
c having no security for data..but c++ having that
security,using class(access specifier).
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is the difference between abs() and fabs() functions?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Where are c variables stored in memory?
What is the purpose of the preprocessor directive error?
all c language question
Can a file other than a .h file be included with #include?
what are the facialities provided by you after the selection of the student.
hi any body pls give me company name interview conduct "c" language only
Compare array data type to pointer data type
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Do you know the difference between exit() and _exit() function 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); }
Do you know what are the properties of union in c?
What is strcmp in c?
What is use of #include in c?