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 is the disadvantage of using macros?
What is a static variable in c?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
How can I convert integers to binary or hexadecimal?
writw a program to insert an element in the begning of a doubly linked list
Is return a keyword in c?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
What is the difference between if else and switchstatement
What is the purpose of scanf() and printf() functions?
wat is the difference between array and pointer?