what is computer
Answers were Sorted based on User's Feedback
Answer / mayank
computer is a electronic m/c which can solve
calculations,alfabatical and numeric problems.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / bala prasad
Computer is an eletronic device which can be used to solve mathematical and logical operations.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / suraj
Computer is such electronic hardware device which use to run various applications and also for calculations related with mathematical and logical.
| Is This Answer Correct ? | 0 Yes | 0 No |
write a program to arrange the contents of a 1D array in ascending order
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Is c is a procedural language?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
When is the “void” keyword used in a function?
Where in memory are my variables stored?
Is it possible to have a function as a parameter in another function?
What is a ternary operator in c?
to get a line of text and count the number of vowels in it
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What is array of structure in c programming?