What does *p++ do?
No Answer is Posted For this Question
Be the First to Post Answer
Explain a file operation in C with an example.
What is uint8 in c?
Explain what is a stream?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
What is default value of global variable in c?
Whether there can be main inside another main?If so how does it work?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
please give me some tips for the selection in TCS.
What is pass by reference in c?
How can I do serial ("comm") port I/O?
Are the outer parentheses in return statements really optional?