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 | 1 No |
Post New Answer View All Answers
What are the valid places to have keyword “break”?
What are register variables in c?
What is malloc and calloc?
Write programs for String Reversal & Palindrome check
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Is null valid for pointers to functions?
How to compare array with pointer in c?
Tell me is null always defined as 0(zero)?
Explain what is a static function?
What are the types of bitwise operator?
What are the restrictions of a modulus operator?
Which function in C can be used to append a string to another string?
Write a program to check whether a number is prime or not using c?
Is flag a keyword in c?
What is file in c preprocessor?