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.....
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
Explain function pointer with exapmles.
convert 12345 to 54321 withoutusing strig
What is a spanning Tree?
What is call by value in c?
what are the interview question's in the language c
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What library is sizeof in c?
Bit swapping
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
What is the difference b/w main() in C language and main() in C++.