main()
{
int i=400,j=300;
printf("%d..%d");
}

Answer Posted / khaja

it prints bcoz no i,j values are mentioned.

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?

2415


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2338


Why do we use main function?

644


Explain what is the benefit of using an enum rather than a #define constant?

728


How many types of functions are there in c?

587






How can I determine whether a machines byte order is big-endian or little-endian?

628


What are volatile variables in c?

527


Is printf a keyword?

762


How do you do dynamic memory allocation in C applications?

634


What are logical errors and how does it differ from syntax errors?

663


What is ponter?

777


How can you draw circles in C?

631


What is abstract data structure in c?

533


What is self-referential structure in c programming?

662


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

1858