What’s the special use of UNIONS?
No Answer is Posted For this Question
Be the First to Post Answer
Linked lists -- can you tell me how to check whether a linked list is circular?
Write a function to find the area of a triangle whose length of three sides is given
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
What is the size of empty structure in c?
where do we use structure pointer?
what is difference between overriding and overloading?
What is function pointer c?
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What is a macro?
What is pass by value in c?
What is the main difference between calloc () and malloc ()?