What is an array? What the different types of arrays in c?
Here is a neat trick for checking whether two strings are equal
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is the use of ?: Operator?
Explain the use of fflush() function?
What are the different types of storage classes in C?
can we write a c program with out using main
What is #include stdio h?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
what is data structure.in linear and non linear data structures which one is better?Explain
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
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.