What does p mean in physics?
No Answer is Posted For this Question
Be the First to Post Answer
coding for Fibonacci.?
What is the difference between %d and %*d in C
Why c is a procedural language?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
How can I access a memory located at certain address?
write a program in c language to print your bio-data on the screen by using functions.
What are the difference between a free-standing and a hosted environment?
What is structure padding & expalain wid example what is bit wise structure?
all c language question
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
how to write a c program to print list of fruits in alpabetical order?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }