What is typedef?
The typedef is a keyword used in C programming to provide some meaningful names to the already existing variable in the C program. It behaves similarly as we define the alias for the commands. In short, we can say that this keyword is used to redefine the name of an already existing variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
What does c mean?
What does == mean in texting?
Explain what’s a signal? Explain what do I use signals for?
what is a static function
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
What is new line escape sequence?
How pointer is benefit for design a data structure algorithm?
what is Array?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What are header files? What are their uses?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..