What does typeof return in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is external and internal variables What is dynamic memory allocation what is storage classes in C
Explain how do you determine the length of a string value that was stored in a variable?
what is function pointer?
how to reverse string "Hello World" by using pointers only. Without any temp var
How many identifiers are there in c?
How main function is called in c?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Explain how do you sort filenames in a directory?
can we change the default calling convention in c if yes than how.........?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);