write a program to find lcm and hcf of two numbers??
Answer Posted / yonatan
please tell me the answer?
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is unary operator?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Can you please explain the scope of static variables?
Is flag a keyword in c?
Can a local variable be volatile in c?
What is the difference between fread buffer() and fwrite buffer()?
why do some people write if(0 == x) instead of if(x == 0)?
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); }
Is return a keyword in c?
What is a spanning Tree?
Can you assign a different address to an array tag?
What does the format %10.2 mean when included in a printf statement?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What is #include cctype?
What is huge pointer in c?