What is the difference between constant pointer and constant variable?
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.
What is the difference between text files and binary files?
What happens if you free a pointer twice?
what does keyword ‘extern’ mean in a function declaration?
What is a symbolic constant?
Calculate 1*2*3*____*n using recursive function??
how logic is used
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
What are the key features of C?
What is the Difference between Class and Struct?
Why do u use # before include in a C Progam?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )