What does 1f stand for?
No Answer is Posted For this Question
Be the First to Post Answer
What is an lvalue?
how to print this pyramid * * * * * * * * * * * * *
What are header files and what are its uses in C programming?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
Can a variable be both static and volatile in c?
Explain two-dimensional array.
What is a macro?
Write a program to generate random numbers in c?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
How will you declare an array of three function pointers where each function receives two ints and returns a float?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }