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
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is wild pointer in c with example?
What is chain pointer in c?
What are the complete rules for header file searching?
what is uses of .net
Explain main function in c?
What is modeling?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain high-order and low-order bytes.
What does the format %10.2 mean when included in a printf statement?
What is return type in c?
What is the explanation for cyclic nature of data types in c?
Write a program to implement queue.
What is a good data structure to use for storing lines of text?