What is a const pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
Why static is used in c?
What standard functions are available to manipulate strings?
Write a program to print "hello world" without using a semicolon?
What is indirection in c?
How can I convert a number to a string?
What is the right type to use for boolean values in c?
Explain continue keyword in c
What is the scope of an external variable in c?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
What is array in c with example?