what is uses of .net
No Answer is Posted For this Question
Be the First to Post Answer
Can a pointer be static?
Concat two string with most overlapped substring has to remove "abcd"+ "cdef" = "abcdef
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
Write a routine that prints out a 2-D array in spiral order!
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
What is a void pointer? When is a void pointer used?
find out largest elemant of diagonalmatrix
Function calling procedures? and their differences? Why should one go for Call by Reference?
How can I call a function with an argument list built up at run time?
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.
can i know the source code for reversing a linked list with out using a temporary variable?