Write a C program to print 1 2 3 ... 100 without using
loops?
Answer Posted / vivek
void main()
{
int i=1;
if(i<=100)
printf("%d",i);
continue;
getch();
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is string constants?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
Explain the array representation of a binary tree in C.
Write a factorial program using C.
What is c programing language?
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
code for replace tabs with equivalent number of blanks
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Can you please explain the difference between syntax vs logical error?
What are qualifiers in c?
What is sizeof array?
Explain can static variables be declared in a header file?
What does nil mean in c?
What are the properties of union in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)