how should functions be apportioned among source files?
No Answer is Posted For this Question
Be the First to Post Answer
what is bit rate & baud rate? plz give wave forms
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
write a program in c language to print your bio-data on the screen by using functions.
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is return in c programming?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
Do you know what are bitwise shift operators in c programming?
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,
why array index always starts from zero??