Answer Posted / chavidi
void main()
{
int i=0;
while()
{
printf("%d",i)
i++;
}
}
| Is This Answer Correct ? | 25 Yes | 12 No |
Post New Answer View All Answers
What is difference between stdio h and conio h?
What is the scope of an external variable in c?
What is pass by reference in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is the meaning of && in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
how do you execute a c program in unix.
Explain the use of bit fieild.
What is || operator and how does it function in a program?
What is a string?
Between macros and functions,which is better to use and why?
How many levels of pointers have?
Why is extern used in c?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What are the differences between new and malloc in C?