Answer Posted / ravindra kushwaha
for(int i=1;i<=25;i++)
{
printf("%d",i)
}
for(int j=25;j<=50;j++)
{
printf("%d",j)
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are control structures? What are the different types?
Can you think of a logic behind the game minesweeper.
How many bytes is a struct in c?
What is a structure in c language. how to initialise a structure in c?
What are identifiers and keywords in c?
Explain why can’t constant values be used to define an array’s initial size?
about c language
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Write a program to swap two numbers without using a temporary variable?
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.
State two uses of pointers in C?
Explain the binary height balanced tree?
What does emoji p mean?
what is different between auto and local static? why should we use local static?
List the difference between a While & Do While loops?