What is the use of void pointer and null pointer in c language?
No Answer is Posted For this Question
Be the First to Post Answer
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?
What is the translation phases used in c language?
Why shouldn’t I start variable names with underscores?
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 )?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
What is period operator in c?
What is echo in c programming?
write a program to create a sparse matrix using dynamic memory allocation.
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
Why do we use return in c?