What is the meaning of typedef struct in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What happens if header file is included twice?
write a C program to print the program itself ?!
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
code for inverse a matrix
int i=10; printf("%d %d %d", i, i=20, i);
Why use int main instead of void main?
Why main function is special give two reasons?
Why c is called free form language?
What is a pointer and how it is initialized?
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.
number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.