Do character constants represent numerical values?
No Answer is Posted For this Question
Be the First to Post Answer
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
Find if a number is power of two or not?
can we have joblib in a proc ?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What is a loop?
What is pragma in c?
What does the characters “r” and “w” mean when writing programs that will make use of files?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STRUCTURES
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?