main()
{
int i=400,j=300;
printf("%d..%d");
}
Answers were Sorted based on User's Feedback
Answer / muthu
It prints only garbage value, since the variables x and y
were not metioned out side the bracket
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer:
400 300
printf takes first two intilization values as default
| Is This Answer Correct ? | 2 Yes | 9 No |
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 pointer to pointer in c language?
Write a program to print “hello world” without using semicolon?
How can you find the exact size of a data type in c?
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
Explain b+ tree?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Find if a number is power of two or not?
what is the difference between %d and %*d in c languaga?
What are actual arguments?
Do you know what is a programing language ?