What is the difference between typedef struct and struct?
No Answer is Posted For this Question
Be the First to Post Answer
what is the diff b/w static and non static variables in C. Give some examples plz.
how many argument we can pas in in a function
What is use of bit field?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
how to print this sereis 2 4 3 6 5..........?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
Is c still relevant?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
What is multidimensional arrays
What are the 4 types of functions?