What is the difference between array and pointer?
No Answer is Posted For this Question
Be the First to Post Answer
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Are there any problems with performing mathematical operations on different variable types?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
Why doesn't C have nested functions?
Explain b+ tree?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
What are the various topologies? Which one is the most secure?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is define directive?