how can u print a message without using any library function
in c
Answer / sreekanth
void main()
{
clrscr();
printf("Hello World");
getch();
}
Is This Answer Correct ? | 5 Yes | 24 No |
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
Why c language is called c?
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
What are the ways to a null pointer can use in c programming language?
Write a program to check whether a number is prime or not using c?
What do the functions atoi(), itoa() and gcvt() do?
Concat two string with most overlapped substring has to remove "abcd"+ "cdef" = "abcdef
Explain 'bit masking'?
Explain union.
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);