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 are local static variables?
What is wrong with this declaration?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What are the advantages of using new operator as compared to the function malloc ()?
Differentiate between null and void pointers.
What does the file stdio.h contain?
What is the meaning of ?
What does calloc stand for?
Why dont c comments nest?
Can include files be nested?
Explain how do you use a pointer to a function?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What type is sizeof?
What are the two types of structure?
Explain how can I right-justify a string?