Explain the use of 'auto' keyword in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What are the ways to a null pointer can use in c programming language?
What are the advantages of union?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
Write a program to print the prime numbers from 1 to 100?
Which is best book for data structures in c?
Explain how does free() know explain how much memory to release?
where does malloc() function get the memory?
Is boolean a datatype in c?
What is the difference between variable declaration and variable definition in c?