what is the c.
Answers were Sorted based on User's Feedback
Answer / ganesh
c is a language which is used to create the console applications.
| Is This Answer Correct ? | 7 Yes | 0 No |
c is a programming language they ae use to create a software
they are run only c editior they are roboust ,secure ,oop
supported language
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nishant jain
C is a high-level and general purpose programming language that is ideal for developing firmware or portable applications. Originally intended for writing system software, C was developed at Bell Labs by Dennis Ritchie for the Unix Operating System (OS) in the early 1970
| Is This Answer Correct ? | 0 Yes | 0 No |
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
What does the function toupper() do?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is macro?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
what is difference between array of characters and string
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
why do we use # in c-language?
What is a char in c?
What library is sizeof in c?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv