What is the meaning of 2d in c?
No Answer is Posted For this Question
Be the First to Post Answer
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
Explain what is a program flowchart and explain how does it help in writing a program?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Explain the ternary tree?
Differentiate between functions getch() and getche().
What is nested structure?
What is the scope of static variable in c?
Do you know the use of 'auto' keyword?
What is static identifier?
What does %c do in c?
explain how do you use macro?