? ???Mirror Mirror on the wall????????
printf("%d",(printf("Hello")); What it returns?
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.....
Explain how can you tell whether a program was compiled using c versus c++?
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
Describe the modifier in c?
What is the default value of local and global variables in c?
What is array in c with example?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is a global variable in c?
What is an endless loop?
without a terminator how can we print a message in a printf () function.