WHAT IS C?
Answers were Sorted based on User's Feedback
Answer / siddhartha mukherjee
C is the third letter of english alphabet
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / k.rangaswamy
This is the one of the language which is used to interact
with the hardware in the efficiency manner.This is actually
a procedure oriented language and also we can call it as
High level language.
| Is This Answer Correct ? | 0 Yes | 0 No |
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
Where define directive used?
Who developed c language and when?
what is the difference between c and c++?
Is c object oriented?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
Can a variable be both static and volatile in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
How can I access an I o board directly?