What is use of #include in c?
No Answer is Posted For this Question
Be the First to Post Answer
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.
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
how can use subset in c program and give more example
Can i use “int” data type to store the value 32768? Why?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
How the processor registers can be used in C ?
write a program wch produces its own source code aas its output?
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
C program to find all possible outcomes of a dice?
What are multidimensional arrays?
What is clrscr ()?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }