What are header files and what are its uses in C programming?
What does the c preprocessor do?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
What is character constants?
What does %c do in c?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Write a program to identify if a given binary tree is balanced or not.
What is the difference between constant pointer and constant variable?
what type of errors are checked during compilation
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
Describe explain how arrays can be passed to a user defined function
What is an lvalue and an rvalue?
Explain what is the difference between a free-standing and a hosted environment?