What is meant by operator precedence?
No Answer is Posted For this Question
Be the First to Post Answer
Difference Between embedded software and soft ware?
What is a scope resolution operator in c?
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
What are the concepts introduced in OOPs?
Explain the properties of union.
What Is The Difference Between Null And Void Pointer?
what is the output of printf("%d",(scanf("%d",10));
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
What is use of pointer?
When can you use a pointer with a function?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case