what is c
Answers were Sorted based on User's Feedback
Answer / daya shankar
The C and C++ programming languages are powerful mid-level
programming languages that were created as systems
programming languages. This means that the language allows
access to operating system functions. In addition the
language has the capability for easy access to hardware.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / sunil s patil
C is one of the most widely used programming language of
all time and there are very few computer architectures for
which C compiler does not exit.
| Is This Answer Correct ? | 1 Yes | 2 No |
what is data structure?
what is the difference between const char *p, char const *p, const char* const p
5 Answers Accenture, Aricent, CTS, Geometric Software, Point Cross, Verizon,
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
Give me basis knowledge of c , c++...
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
How pointers are declared?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Are pointers integers in c?
what is the difference between 123 and 0123 in c?
Why do we use stdio h and conio h?
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
Is malloc memset faster than calloc?