What are bitwise shift operators in c programming?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What is nested structure?
c program to manipulate x=1!+2!+3!+...+n! using recursion
create an SINGLE LINKED LISTS and reverse the data in the lists completely
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Describe the steps to insert data into a singly linked list.
what is pointer
discuss the steps needed to get a program from source code to executable in a system?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
Can I initialize unions?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
Whether there can be main inside another main?If so how does it work?