void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answers were Sorted based on User's Feedback
main() { printf("hello%d",print("QUARK test?")); }
What are the loops in c?
How can I allocate arrays or structures bigger than 64K?
how can we print hellow world programme without using semicolon
Why enum is used in c?
What is #line in c?
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.
When is a null pointer used?
What is the difference between a function and a method in c?
What are the 32 keywords in c?
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
write a program to print largest number of each row of a 2D array