what is the function of pragma directive in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is string function in c?
why you will give me a job in TCS.
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
how to set Nth bit of variable by using MACRO
What does stand for?
largest Of three Number using without if condition?
What is the memory allocated by the following definition ? int (*x)();
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What are volatile variables in c?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34