What is a dynamic array in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between scanf and gets?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is a method in c?
Which is better oop or procedural?
What is the use of #include 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.
Can we access the array using a pointer in c language?
Is c pass by value or reference?
Differentiate between calloc and malloc.
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
what is the difference between. system call and library function?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above