What is string function c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Explain bitwise shift operators?
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..
Explain what are global variables and explain how do you declare them?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What is the difference between malloc calloc and realloc in c?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
What are the salient features of c languages?
what is purpose of fflush(stdin) function
Is main a keyword in c?
Differentiate Source Codes from Object Codes
Tell me what is the purpose of 'register' keyword in c language?