How can I change the size of the dynamically allocated array?
Describe the difference between = and == symbols in c programming?
How to avoid structure padding in C?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
What does != Mean in c?
What is the purpose of ftell?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
What's wrong with "char *p; *p = malloc(10);"?
What is the use of ?: Operator?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
a program that can input number of records and can view it again the record
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }