Is it possible to create recycle bin in mobiles?
Answers were Sorted based on User's Feedback
What is the difference between ‘g’ and “g” in C?
What is the process to generate random numbers in c programming language?
What is the difference between new and malloc functions?
Why does not c have an exponentiation operator?
what is ANSI and ISO
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Explain how does flowchart help in writing a program?
Is it better to use a macro or a function?
What is return type 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 do you mean by enumeration constant?
List some applications of c programming language?