What is a list in c?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
What is methods in c?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
Write a program to print "hello world" without using a semicolon?
why arithmetic operation can’t be performed on a void pointer?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
What are the 5 types of organizational structures?
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
Compare and contrast compilers from interpreters.
How can I find the day of the week given the date?
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
how to find anagram without using string functions using only loops in c programming