what is the c.

Answer Posted / ganesh

c is a language which is used to create the console applications.

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1859


WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER

1461


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

2578


Array is an lvalue or not?

640


Why isnt there a numbered, multi-level break statement to break out

589






write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?

2413


A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

649


what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?

1906


What is the use of static variable in c?

595


Is file a keyword in c?

503


what is bit rate & baud rate? plz give wave forms

1519


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

7410


How can I read/write structures from/to data files?

553


Explain how can I manipulate strings of multibyte characters?

784


how to find anagram without using string functions using only loops in c programming

2718