2. What does static variable mean?
Answers were Sorted based on User's Feedback
Answer / sai
static variable in c defined as the value of the static
variable is fixed in that program.
That means the chages will not effect the static variable
values.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / avik bagh
A static variable is a variable that you can call and use without using an object of the class it is a part of. You can use a static variable using just the class name.
| Is This Answer Correct ? | 1 Yes | 0 No |
write a program in c language for the multiplication of two matrices using pointers?
Why is c fast?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Explain the difference between null pointer and void pointer.
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
Explain what is the difference between #include and #include 'file' ?
What are formal parameters?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What are the advantage of c language?
What kind of structure is a house?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402