What is scope and lifetime of a variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is masking?
What is default value of global variable in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
Write a code to remove duplicates in a string.
What is the description for syntax errors?
write a 'c' program to sum the number of integer values
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
Is null always equal to 0(zero)?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]