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 |
count the numbers between 100 and 300, that star with 2 and ends with 2
Is javascript based on c?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
WAP – represent a char in binary format
What is c language used for?
What is the Lvalue and Rvalue?
Can two or more operators such as and be combined in a single line of program code?
Write a program that accept anumber in words
simple program of graphics and their output display
What is clrscr ()?
What is the c language function prototype?