Explain what will be the outcome of the following conditional statement if the value of variable s is 10?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why c is called procedure oriented language?

0 Answers  


What is malloc return c?

0 Answers  


What is call by reference in functions?

1 Answers  


#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }

12 Answers   Capital IQ, Sasken,


Explain do array subscripts always start with zero?

0 Answers  


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  


main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............

3 Answers  


What are the different categories of functions in c?

0 Answers  


print ur name without using any semicolon in c/c++....

21 Answers   Bosch, TCS, Wipro,


Tell me when would you use a pointer to a function?

0 Answers  


How can I do peek and poke in c?

0 Answers  


What is the use of ?: Operator?

0 Answers  


Categories