which one of follwoing will read a character from keyboard
and store in c
a)c=getc()
b)c=getchar()
c)c=getchar(stdin)
d)getc(&c)
e)none
Post New Answer View All Answers
Is there a way to switch on strings?
What are the types of variables in c?
Why c is called a middle level language?
Why is structure important for a child?
How can I call fortran?
Write a code to generate divisors of an integer?
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!+....
The __________ attribute is used to announce variables based on definitions of columns in a table?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
Is it better to bitshift a value than to multiply by 2?
why return type of main is not necessary in linux
How do you print only part of a string?
How a string is stored in c?
What is the basic structure of c?