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 |
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Why doesn't C support function overloading?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
How can I make it pause before closing the program output window?
What are the 4 types of programming language?
Explain that why C is procedural?
How to print "Hi World" without using semi colon?
What is a dynamic array in c?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
How do I swap bytes?
when user give a number it multiply with 9 without useing '+' and '*' oprator