code for quick sort?
What is the meaning of ?
what is a static function
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,
Does c have an equivalent to pascals with statement?
What is the use of f in c?
how can i calculate mean,median,mode by using c program
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
What is the deal on sprintf_s return value?
How the c program is executed?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
What do you mean by dynamic memory allocation in c?
what are the general concepts of c and c++