which operator having highest precedence?
a.)+ b.)++ c.)= d.)%
Answers were Sorted based on User's Feedback
Why is the code below functioning. According to me it MUST NOT.
What is zero based addressing?
write a own function to compare two strings with out using stringcomparition function?
HOW DO YOU HANDLE EXCEPTIONS IN C?
what about "char *(*(*a[])())();"
Explain what’s a signal? Explain what do I use signals for?
Why is struct padding needed?
How do you define a string?
What is the general form of #line preprocessor?
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
which of 'arrays' or 'pointers' are faster?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.