What is the use of c language in real life?
No Answer is Posted For this Question
Be the First to Post Answer
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
How many bytes is a struct in c?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Which header file is used for clrscr?
What is unary operator?
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
What does 3 mean in texting?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
Describe advantages and disadvantages of the various stock sorting algorithms
Can we add pointers together?