a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
6 14973f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
5 10953macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 37117enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
8 44890
What are global variables and how do you declare them?
How main function is called in c?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
Explain the use of function toupper() with and example code?
a program that can input number of records and can view it again the record
What are variables c?
Explain the priority queues?
What are the differences between new and malloc in C?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is the difference between array and pointer in c?
How macro execution is faster than function ?
When we use void main and int main?
Write programs for String Reversal & Palindrome check
Differentiate between calloc and malloc.
Why is this loop always executing once?