What is scope rule of function in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to write hello word without using semicolon at the end?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
Why ca not I do something like this?
What is static identifier?
Do pointers take up memory?
What are data breakpoints?
Why does everyone say not to use scanf? What should I use instead?
Why can't we initialise member variable of a strucutre
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;