Answer Posted / chaitali
#include <stdio.h>
#include<conio.h>
int main()
{
int num;
num=1;
clrscr();
printf("My favorite number");
printf("is %d because it is first.\n",num);
getch();
return 0;
}
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What is the difference between void main and main in c?
what is the structure pointer?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
How can I remove the trailing spaces from a string?
Explain the difference between malloc() and calloc() function?
Is c easy to learn?
How is pointer initialized in c?
What is a static variable in c?
What is the difference between array_name and &array_name?
write a c program for swapping two strings using pointer
Why void main is used in c?
What is the use of structure padding in c?
What is meant by errors and debugging?
What is wild pointer in c?
Where define directive used?