What is c definition?
How are Structure passing and returning implemented by the complier?
Write a program to swap two numbers without using third variable in c?
When we use void main and int main?
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 format %10.2 mean when included in a printf statement?
Which one would you prefer - a macro or a function?
c program to compute AREA under integral
What is #include cctype?
What is a structure and why it is used?
In C language what is a 'dangling pointer'?
What is a #include preprocessor?
There seem to be a few missing operators ..
Differentiate between a for loop and a while loop? What are it uses?
What is the difference between arrays and pointers?