Write a program to print “hello world” without using semicolon?
What is the best way to comment out a section of code that contains comments?
Do character constants represent numerical values?
How to convert decimal to binary in C using recursion??
What is scanf_s in c?
write a program structure to find average of given number
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Is this program statement valid? INT = 10.50;
Does * p ++ increment p or what it points to?
what is develop in c language
Is stack a keyword in c?
What is difference between union and structure in c?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);