Is there any possibility to create customized header file with c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What type is sizeof?
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
write a program to display the frequency of each element in a given array in c language
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
What are bitwise shift operators in c programming?
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
how to use showbits function?
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
If input is 123 then how to print 100 and 20 and 3 seperately?
Can a pointer be null?
hi , please send me NIC written test papers to sbabavalli@gmail.com
write a program for size of a data type without using sizeof() operator?
22 Answers HCL, IBM,