What is data structure in c language?
What are different types of operators?
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
Why do we need volatile in c?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
How a string is stored in c?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
What does s c mean in text?
What is structure padding in c?
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
why division operator not work in case of float constant?