How can you allocate arrays or structures bigger than 64K?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is meant by 'bit masking'?
Explain how do you print an address?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
is it possible to create your own header files?
What are the types of type specifiers?
How can I write a function analogous to scanf?
What is an operator?
wat is the difference between array and pointer?
Write the Program to reverse a string using pointers.
How is pointer initialized in c?
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.
What is the need of structure in c?