What functions are used in dynamic memory allocation in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the general form of function in c?
What are loops c?
Can we change the value of constant variable in c?
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
How #define works?
Can we declare function inside main?
Should a function contain a return statement if it does not return a value?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
If you know then define #pragma?
What is a built-in function in C?