Are there any problems with performing mathematical operations on different variable types?
No Answer is Posted For this Question
Be the First to Post Answer
What is #define size 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 is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
Explain what header files do I need in order to define the standard library functions I use?
What is derived datatype in c?
What are the disadvantages of a shell structure?
Write a program to print fibonacci series using recursion?
Why do we use static in c?
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
What is undefined behavior?
Explain how can you be sure that a program follows the ansi c standard?
Why is malloc used?