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 |
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
what is the code to display color fonts in the output?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
Can a pointer be null?
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
Can we add pointers together?
How do you print an address?
Explain why can’t constant values be used to define an array’s initial size?
a c code by using memory allocation for add ,multiply of sprase matrixes
explain what is a newline escape sequence?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.