What is the use of pragma in embedded c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a file descriptor in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
c programming of binary addition of two binary numbers
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
Input is "Jack and jill went up a hill" To print output is 1-letter word(s)-1 2-letter words-1 3-letter words-1 4-letter words-4
Explain how are portions of a program disabled in demo versions?
What is const and volatile in c?
Explain enumerated types in c language?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
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!+....
What is the use of header?
What is the benefit of using const for declaring constants?