Answer Posted / rahul
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i=5;
printf("%d",i);
getch();
}
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What are structure members?
Can you apply link and association interchangeably?
How can I direct output to the printer?
I heard that you have to include stdio.h before calling printf. Why?
What is boolean in c?
What is page thrashing?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What is cohesion in c?
using only #include
What are valid signatures for the Main function?
#include
What is string length in c?
What is f'n in math?
What are preprocessor directives in c?
What is the meaning of && in c?