What happens if you free a pointer twice?
No Answer is Posted For this Question
Be the First to Post Answer
What does the c preprocessor do?
what is the difference between strcpy() and memcpy() function?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What are different types of operators?
What is sizeof return in c?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
WHAT IS HEADER?
What is a pointer?
Give the rules for variable declaration?
Why dont c comments nest?
can we print any string without using terminator?
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...