Is there any data type in c with variable size?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between Function to pointer and pointer to function
Three major criteria of scheduling.
How many types of functions are there in c?
Explain how can I manipulate strings of multibyte characters?
Why can’t we compare structures?
what is the difference between postfix and prefix unary increment operators?
can we write a c program with out using main
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
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.
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How arrays can be passed to a user defined function