Explain what is the difference between #include and #include 'file' ?
No Answer is Posted For this Question
Be the First to Post Answer
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
do you think its fraud or original company?
What is your stream meaning?
Two's compliment of -5
Write a program to identify if a given binary tree is balanced or not.
Why is c called c?
Derive the complexity expression for AVL tree?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
define 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); }