Can you please explain the scope of static variables?
what is the function of void main()?
Explain what are global variables and explain how do you declare them?
Which driver is a pure java driver
What are the valid places to have keyword “break”?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (“%d\n”,j); }
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
write a program in c language to print your bio-data on the screen by using functions.
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,
Explain how can you check to see whether a symbol is defined?
What is the difference between calloc() and realloc()?
#define f(x) main() { printf("\n%d",f(2+2)); }