Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Why c is called procedure oriented language?
What is malloc return c?
What is call by reference in functions?
#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?
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
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
What are the different categories of functions in c?
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?
How can I do peek and poke in c?
What is the use of ?: Operator?