A collection of functions,calls,subroutines or other data
a) library
b) header files
c) set of files
d) textfiles
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find largest of three numbers using simple if only for one time.
Is there a way to switch on strings?
#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 preprocessor should come before source code?
Explain low-order bytes.
How can you determine the maximum value that a numeric variable can hold?
Differentiate between Macro and ordinary definition.
how to create duplicate link list using C???
What is size of union in c?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
How do we open a binary file in Read/Write mode in C?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }