How will you allocate memory to a double pointer ?
Answers were Sorted based on User's Feedback
#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.
program to find the ASCII value of a number
what is default constructor?
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
which is the best antivirus and how to update it
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What is the Purpose of 'extern' keyword in a function declaration?
Where are some collections of useful code fragments and examples?
What is operator promotion?
Where are local variables stored in c?
wt is d full form of c