What is mean by data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
write a program to generate 1st n fibonacci prime number
Here is a neat trick for checking whether two strings are equal
Explain null pointer.
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
How a string is stored in c?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is a char c?
which type of question asked from c / c++ in interview.
what is difference between null and nul in c language
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }