a simple program in c language

Answers were Sorted based on User's Feedback



a simple program in c language..

Answer / love agarwal

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("hello");
getch();
}

Is This Answer Correct ?    5 Yes 0 No

a simple program in c language..

Answer / rahul

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i=5;
printf("%d",i);
getch();
}

Is This Answer Correct ?    3 Yes 2 No

a simple program in c language..

Answer / 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

a simple program in c language..

Answer / 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

a simple program in c language..

Answer / 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

More C Interview Questions

how to add two numbers without using arithmetic operators?

4 Answers  


There seem to be a few missing operators ..

0 Answers  


What is c standard library?

0 Answers  


What is the best way of making my program efficient?

0 Answers  


YBJBU6

1 Answers  


Do you know the use of fflush() function?

0 Answers  


How do you write a program which produces its own source code as its output?

2 Answers  


How can I generate floating-point random numbers?

0 Answers  


write a program to fined second smallest and largest element in a given series of elements (without sorting)

9 Answers   Yahoo,


to convert a string without using decrement operater and string functions

1 Answers  


Expand the following LKB BKL FFG

0 Answers  


what is the different between if-else and switch statment (other than syntax)

26 Answers   CTS, Oracle, Scorpos,


Categories