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 three constants used in c?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
Why we use int main and void main?
What are the functions to open and close the file in c language?
What is hashing in c?
What does return 1 means in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Write a program to print fibonacci series using recursion?
Explain the priority queues?
What are # preprocessor operator in c?
What does %c mean in c?
what is the significance of static storage class specifier?
how to introdu5ce my self in serco
What is external variable in c?
What is union and structure in c?