What do you mean by c?
Answer / dhanshri chabukswar
c is a language used to write programs that tell the computer what to do - like calculations ,controlling devices or building operating systems.
c is a powerful,structured and portable programming language used to develop software and system applications ...
| Is This Answer Correct ? | 0 Yes | 0 No |
How can a program be made to print the line number where an error occurs?
What is meant by int fun const(int a, int b) { .... ... }
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
When is a “switch” statement preferable over an “if” statement?
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
What is this pointer in c plus plus?
What is operator precedence?
What is main void in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
const char * char * const What is the differnce between the above tow?.
How to implement variable argument functions ?
Method Overloading exist in c ?