What is optimization in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are preprocessor directives in c?
Explain Function Pointer?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
Where is c used?
Why is a semicolon (;) put at the end of every program statement?
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
define c
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
how logic is used
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What are the __date__ and __time__ preprocessor commands?