how logic is used
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
How is actual parameter different from the formal parameter?
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
What are qualifiers in c?
How pointer is different from array?
Explain how do you determine whether to use a stream function or a low-level function?
what is the difference between NULL & NUL keywords in C?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
Explain how can I avoid the abort, retry, fail messages?
Is c procedural or object oriented?
What is a const pointer, and how does it differ from a pointer to a const?