any "C" function by default returns an
a) int value
b) float value
c) char value
d) a & b
Write a simple program to find the size of different basic data types in C.
Explain spaghetti programming?
What are types of functions?
Write a c program to demonstrate Type casting in c?
how could explain about job profile
What are formal parameters?
What are pointers in C?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
Why do we use main function?
Can we declare variable anywhere in c?