any "C" function by default returns an
a) int value
b) float value
c) char value
d) a & b
No Answer is Posted For this Question
Be the First to Post Answer
Difference Between embedded software and soft ware?
Describe static function with its usage?
What is property type c?
How to implement variable argument functions ?
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
Do you know the difference between exit() and _exit() function in c?
When should the volatile modifier be used?
write a program to generate address labels using structures?
Write a program to find given number is even or odd without using any control statement.
What's a good way to check for "close enough" floating-point equality?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL