Why c is a procedural language?
Do you know the difference between malloc() and calloc() function?
What is the difference between fread and fwrite function?
What is difference between structure and union in c programming?
What is your stream meaning?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
int *a[5] refers to
how to add our own function in c library please give details.?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is the use of ?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
void main() { int a=1; while(a++<=1) while(a++<=2); }
How does variable declaration affect memory?