How do I use strcmp?
No Answer is Posted For this Question
Be the First to Post Answer
how we do lcm of two no using c simple if while or for statement
ABCDCBA ABC CBA AB BA A A
What is operator promotion?
Explain how do you convert strings to numbers in c?
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
What are operators in c?
What is build process in c?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
write a program structure to find average of given number
Difference between MAC vs. IP Addressing
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above