What are the features of c languages?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is difference between null and nul in c language

2 Answers  


What are local and global variables?

3 Answers  


What is strcmp in c?

0 Answers  


What does typedef struct mean?

0 Answers  


What the advantages of using Unions?

0 Answers   TISL,






How can I increase the allowable number of simultaneously open files?

1 Answers   ABC,


What is structure padding in c?

0 Answers  


How does C++ help with the tradeoff of safety vs. usability?

1 Answers  


Write a program to show the change in position of a cursor using c

0 Answers  


What is integer constants?

0 Answers  


can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?

2 Answers  


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); }

0 Answers   Wilco,


Categories