What is the output of below code?
main() { static int a=5; printf("%3d",a--); if(a) main(); }
WAP to convert text into its ASCII Code and also write a function to decode the text given?
What is scope rule in c?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
What is the difference between void main and main in c?
What is the benefit of using const for declaring constants?
How can I send mail from within a c program?
to find the program of matrix multiplication using arrays
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is void main ()?
Why is c called a mid-level programming language?
Can main () be called recursively?
what is the difference between NULL('\0') and 0?