a simple program in c language
Answers were Sorted based on User's Feedback
Answer / love agarwal
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("hello");
getch();
}
Is This Answer Correct ? | 5 Yes | 0 No |
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 |
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 |
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 |
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 |
how to add two numbers without using arithmetic operators?
There seem to be a few missing operators ..
What is c standard library?
What is the best way of making my program efficient?
YBJBU6
Do you know the use of fflush() function?
How do you write a program which produces its own source code as its output?
How can I generate floating-point random numbers?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
to convert a string without using decrement operater and string functions
Expand the following LKB BKL FFG
what is the different between if-else and switch statment (other than syntax)
26 Answers CTS, Oracle, Scorpos,