What is function what are the types of function?
No Answer is Posted For this Question
Be the First to Post Answer
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
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 c preprocessors?
difference between native and cross compilers
main() { int i; printf("%d",i^i); }
What is the difference between null pointer and the void pointer?
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
Why array is used in c?
What is a pointer and how it is initialized?
how to convert an char array to decimal array
What are compound statements?
How many header files are in c?