#‎include‬<stdio.h>
void main()
{
int i;
for(i=5;0;i++)
{
printf("%d",i);
}
}
Answer Posted / deepika agrawal
an error will be encountered in the begining of the program...
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
write an algorithm to display a square matrix.
What is c method?
How can I write a function analogous to scanf?
Does sprintf put null character?
Is linux written in c?
How many header files are in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Differentiate between new and malloc(), delete and free() ?
Write a function that will take in a phone number and output all possible alphabetical combinations
What is meant by 'bit masking'?
C language questions for civil engineering
What is a null string in c?
What are static variables in c?
What is enumerated data type in c?
What is %lu in c?