How do shell structures work?


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

Post New Answer

More C Interview Questions

When can a far pointer be used?

0 Answers  


Can the sizeof operator be used to tell the size of an array passed to a function?

0 Answers  


Can math operations be performed on a void pointer?

0 Answers  


What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?

1 Answers   Excel,


What are the different file extensions involved when programming in C?

0 Answers  






#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

0 Answers   Wilco,


write a function to find whether a string is palindrome or not and how many palindrome this string contain?

2 Answers   Aptech,


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,


we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?

2 Answers  


write a program in c language to print your bio-data on the screen by using functions.

0 Answers  


c program to manipulate x=1+3+5+...+n using recursion

2 Answers   Wipro,


what is c

4 Answers  


Categories