How do you declare a variable that will hold string values?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between union and anonymous union?
In c programming language, how many parameters can be passed to a function ?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
write a function which accept two numbers from main() and interchange them using pointers?
What is the description for syntax errors?
What will be the output of x++ + ++x?
What is new line escape sequence?
What are the 5 types of inheritance in c ++?
What is a method in c?
Write a c program to demonstrate character and string constants?
Why is main function so important?