What is the benefit of using const for declaring constants?
Why string is used in c?
What is sorting in c plus plus?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What will the preprocessor do for a program?
What does the function toupper() do?
Write a C program to print 1 2 3 ... 100 without using loops?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
Why c is called object oriented language?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What are bitwise shift operators in c programming?