What are types of functions?
No Answer is Posted For this Question
Be the First to Post Answer
Why c is called procedure oriented language?
What is pragma in c?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What is Memory leakage ?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
where do we use volatile keyword?
What are identifiers in c?
What is a far pointer?What is the utility?
Explain c preprocessor?
Explain the difference between call by value and call by reference in c language?
c language interview questions & answer
What are disadvantages of C language.