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
What are different types of pointers?
What kind of structure is a house?
Is int a keyword in c?
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.
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What are the 4 types of programming language?
Explain bit masking in c?
Where are local variables stored in c?
What is variables in c?
What is calloc in c?
What is integer constants?
What does %2f mean in c?
What is the purpose of sprintf?
What is merge sort in c?
Describe the difference between = and == symbols in c programming?