What is extern c used for?
How can I find out how much free space is available on disk?
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.
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
Write a code to remove duplicates in a string.
What is Dynamic Initialization.
Explain how can I remove the trailing spaces from a string?
What are dangling pointers? How are dangling pointers different from memory leaks?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
Explain the difference between fopen() and freopen().
What is the difference between text and binary i/o?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
write a C program to print the program itself ?!