how to make program without <> in libray.
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
Where is c used?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
Explain can static variables be declared in a header file?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
how would a 4*3 array A[4][3] stored in Row Major Order?
WHAT IS PRE POSSESSORS?
What is difference between stdio h and conio h?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
which one low Priority in c? a)=,b)++,c)==,d)+