Explain indirection?
No Answer is Posted For this Question
Be the First to Post Answer
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
Explain the difference between getch() and getche() in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
what is the difference b/w NULL and null?
What is use of #include in c?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
How to define structures? ·
What is the use of keyword VOLATILE in C?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What is function prototype in c language?