Answer Posted / gich
#include<stdio.h>
main()
{
int x;
for (x=10;x>=2;x-2;)
{
printf("x is %d\n"x);
{
}
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
What are the modifiers available in c programming language?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What is maximum size of array in c?
Which is better pointer or array?
How can I read in an object file and jump to locations in it?
Does * p ++ increment p or what it points to?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Differentiate call by value and call by reference?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is a char c?
What is #include stdlib h?
How can a string be converted to a number?
Whats s or c mean?
What is the purpose of scanf() and printf() functions?
How will you delete a node in DLL?