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 the types of macro formats?
I need testPalindrome and removeSpace
#include
What are the different categories of functions in c?
What is the difference between ++a and a++?
Explain what are reserved words?
How can I read in an object file and jump to locations in it?
Find MAXIMUM of three distinct integers using a single C statement
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Is it fine to write void main () or main () in c?
what is stack , heap ,code segment,and data segment
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is wrong with this program statement? void = 10;
What is string constants?
How do we print only part of a string in c?
What is the use of getchar functions?