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 |
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
write a c program to print "Welcome" without using semicolon in the whole program ??
find largest element in array w/o using sorting techniques.
write a program to display the numbers having digit 9 in the given range from 1 to 100
What are the restrictions of a modulus operator?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
Write a program to find factorial of a number using recursive function.
What are the types of data structures in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is wrong in this statement?
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?