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 |
how to write a bubble sort program without using temporary variable?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
How can I generate floating-point random numbers?
What is memory leak in c?
Explain goto?
wtite a program that will multiply two integers in recursion function
Explain continue keyword in c
who did come first hen or agg
Between macros and functions,which is better to use and why?
what is the height of tree if leaf node is at level 3. please explain
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }