Write a c program to print the sizes and ranges of different
data types in c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is an arrays?
Why doesnt the call scanf work?
Can two or more operators such as and be combined in a single line of program code?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
WHAT IS INT?
how to make program without <> in libray.
What are the string functions? List some string functions available in c.
How do you define a string?
What are the concepts introduced in OOPs?
What is the difference between printf and scanf in c?