main()
{
intj;
while9j<=10)
{
printf("\n%d",j);
j=j+1;
}
}
Answer Posted / soni
compile error
Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
a c code by using memory allocation for add ,multiply of sprase matrixes
The file stdio.h, what does it contain?
What is the difference between struct and union in C?
Can we declare variables anywhere in c?
What is the sizeof () a pointer?
What does void main return?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Can you write a programmer for FACTORIAL using recursion?
How can you determine the size of an allocated portion of memory?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain how do you list files in a directory?
What is calloc()?
How do you determine the length of a string value that was stored in a variable?
Write a program to generate the Fibinocci Series
Explain the concept and use of type void.