List the different types of c tokens?
No Answer is Posted For this Question
Be the First to Post Answer
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
What header files do I need in order to define the standard library functions I use?
How can I insert or delete a line (or record) in the middle of a file?
What does return 1 means in c?
What does %p mean?
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!+....
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
What is binary tree in c?
What does it mean when a pointer is used in an if statement?
Dear Sir, we are required the bubble sorting programs Regs Prem
Is it acceptable to declare/define a variable in a c header?