What's the difference between constant char *p and char * constant p?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between char * const and const char *?
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
code for bubble sort?
What is property type c?
What are the disadvantages of a shell structure?
When is the “void” keyword used in a function?
Define Array of pointers.
what is mallloc()?how it works?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
What is extern storage class in c?