what is c programing
Answers were Sorted based on User's Feedback
Answer / biswajit jana
C is a general-purpose computer programming language
developed in 1972 by Dennis Ritchie at the Bell Telephone
Laboratories
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / tushar prwe
C IS A TOP DOWN PROCEDURAL LANGUAGE IN WHICH PROGRAMER CAN
DIRECTLY INTERECT WITH THE MEMORY THROGH POINTERS.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ganesh k
C programming is a procedure oriented programming language
which is restricted in parameters like data security (as it
uses file system for storage), transparence and integrity.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / biswajit jana
c programming is representation of logical statement
according to some c language rule.
Is This Answer Correct ? | 6 Yes | 3 No |
Answer / iyswarya
it is a structured oriented programming language.
middle level language,portable
it does not support oops concepts and is used in system
software and application software programs.
it has 32 kewords.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / srujan kumar reddy
C programming is one of thousands of computer programming languages that allow users to create instructions for a computer to follow. While C has a slightly more cryptic style than some other programming languages, it's fairly easy to learn and allows you to read and write code for many different platforms. Because it's so efficient and gives the user a lot of control.
Is This Answer Correct ? | 1 Yes | 0 No |
Explain what is the difference between the expression '++a' and 'a++'?
What is your favorite subject?
1 Answers Ericsson, Invendis, Tech Mahindra,
What is difference between union All statement and Union?
write a program wch produces its own source code aas its output?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Why header file is used in c?
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
What is the purpose of macro in C language?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
write a C program to print the program itself ?!
Explain two-dimensional array.