int i =10
main()
{
int i =20,n;
for(n=0;n<=i;)
{
int i=10
i++;
}
printf("%d", i);
Answer Posted / vikramanj
int i=10[;]
main()
{
int i=20,n;
for(n=0;n<=i;)
{
int i=10[;]
i++;
}
printf("%d", i);
The syntax errs r specified in sq.braces..
if its corrected there s no terminating condition also..
so no o/p..
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is the difference between pure virtual function and virtual function?
What are pointers? Why are they used?
Is stack a keyword in c?
What is a nested formula?
Are pointers really faster than arrays?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is data structure in c and its types?
Why c language is called c?
Is flag a keyword in c?
Explain what header files do I need in order to define the standard library functions I use?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is %d used for?
How important is structure in life?
If I have a char * variable pointing to the name of a function ..
what is use of malloc and calloc?