a simple program in c language

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


Please Help Members By Posting Answers For Below Questions

Explain what is a pragma?

770


What is return in c programming?

696


Why is c still so popular?

778


What is data structure in c programming?

767


What do you understand by normalization of pointers?

801






What standard functions are available to manipulate strings?

784


write an algorithm to display a square matrix.

2413


Is there any demerits of using pointer?

785


What is a void pointer in c?

818


What is a program flowchart and how does it help in writing a program?

874


Should a function contain a return statement if it does not return a value?

798


What are the three constants used in c?

718


What are void pointers in c?

748


What are 'near' and 'far' pointers?

795


By using C language input a date into it and if it is right?

784