define c
Answers were Sorted based on User's Feedback
C is a general purpose computer programming language which
can be used write programs for performing various types of
tasks on computer.
| Is This Answer Correct ? | 37 Yes | 3 No |
Answer / manoj pasumarthi
C is a structured, procedural programming language that has
been widely used both for operating systems and applications
and that has had a wide following in the academic community.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / devi
c is a procedure oriented language and pertform tasks in form of algorithms
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / amit soni
c is a low level language. this characterization is not
pejorative;it is simply means that C deals with some sort of
objects that most computer do,namely character number and
address.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / susmita
c is a set of instructions or commands, which are given for
the computer to do different activity or jobs or works
| Is This Answer Correct ? | 1 Yes | 3 No |
write a program to print the one dimensional array.
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
regarding pointers concept
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
how to swap 2 numbers within a single statement?
What does s c mean in text?
Write a simple code fragment that will check if a number is positive or negative.
What is string function in c?
write a method for an array in which it can display the largest n next largest value.
How can you return multiple values from a function?
List some basic data types in c?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }