c program to subtract between two numbers without using '-'
sign and subtract function.
Explain what is the heap?
Write a program to implement queue.
What does void main () mean?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
What is getche() function?
how to write a prog in c to convert decimal number into binary by using recursen function,
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
What is the difference between static and global variables?
write a c program to check weather a particluar bit is set or not?