What is a program flowchart and explain how does it help in writing a program?
what are two categories of clint-server application development ?
Why is a semicolon (;) put at the end of every program statement?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
how to find out the inorder successor of a node in a tree??
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
what is calloc and malloc?
What is Memory leakage ?
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
What is the use of keyword VOLATILE in C?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
What is wild pointer in c?