program in c to print 1 to 100 without using loop
Answer Posted / madhavi
main()
{
int i=1;
LOOP:
printf("%d\t",i);
i++;
if(i<=100)
goto LOOP;
}
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
i want to know the procedure of qualcomm for getting a job through offcampus
What are the 4 types of organizational structures?
Explain what does a function declared as pascal do differently?
Is c procedural or functional?
given post order,in order construct the corresponding binary tree
What does %c do in c?
When should a far pointer be used?
What are the different types of C instructions?
What is the use of sizeof () in c?
What is null pointer constant?
What does & mean in scanf?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
When should the volatile modifier be used?