Answer Posted / ragu
#include<stdio.h>
void main(void)
{
int a;
clrscr();
printf("enter a number ");
scanf("%d",&a);
printf("you enter the number %d",a);
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can variables be declared anywhere in c?
Why can't I perform arithmetic on a void* pointer?
What is 2c dna?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What does %2f mean in c?
How are pointers declared in c?
How can I write functions that take a variable number of arguments?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is wild pointer in c?
Are pointers integers in c?
What is the difference between typedef struct and struct?
Why isnt there a numbered, multi-level break statement to break out
Why c is faster than c++?
Explain null pointer.
What is the data segment that is followed by c?