Why is sizeof () an operator and not a function?
What does the message "automatic aggregate intialization is an ansi feature" mean?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
What is sizeof return in c?
Why use int main instead of void main?
How to implement call back functions ?
Explain the difference between malloc() and calloc() function?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Explain what is the heap?
What are the types of arrays in c?
write a program to copy a string without using a string?
Write a program to print fibonacci series using recursion?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +