What are 3 types of structures?
No Answer is Posted For this Question
Be the First to Post Answer
Can a variable be both constant and volatile?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
Which is better between malloc and calloc?
code for copying two strings with out strcpy() function.
C program to find frequency of each character in a text file?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
Explain how to reverse singly link list.
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 pointers in c?
How does #define work?
What are the difference between a free-standing and a hosted environment?
What is the concatenation operator?