can any one please explain, how can i access hard
disk(physical address)?
it is possible by the use of far,near or huge pointer?
if yes then please explain......
No Answer is Posted For this Question
Be the First to Post Answer
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is Dynamic Initialization.
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.
Differentiate between static and dynamic modeling.
What is the purpose of macro in C language?
Write a pro-gramme to determine whether the number is even or odd?
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
what is c?
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?