what is the mean of c languages.
Answer / s
c is nothing but a language consisting of small set of a
programming module like function , data type design to
perform a dedicated task.
| Is This Answer Correct ? | 6 Yes | 2 No |
Are the variables argc and argv are local to main?
how to print "hai" in c?
What is null in c?
How can I allocate arrays or structures bigger than 64K?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
What is a #include preprocessor?
hat is a pointer?
What is the difference between test design and test case design?
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
can i know the source code for reversing a linked list with out using a temporary variable?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?