How can I automatically locate a programs configuration files in the same directory as the executable?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can you restore a redirected standard stream?
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.
Explain the difference between getch() and getche() in c?
Can we assign integer value to char in c?
Are there any problems with performing mathematical operations on different variable types?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Explain what is the benefit of using enum to declare a constant?
what is use of loop?
What are static variables in c?
What is the benefit of using an enum rather than a #define constant?
Can two or more operators such as and be combined in a single line of program code?
what is the difference between const volatile int i & volatile const int j;