Here is a good puzzle: how do you write a program which produces its own source code as output?
No Answer is Posted For this Question
Be the First to Post Answer
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
Do string constants represent numerical values?
list the no of files created when c source file is compiled
advantages of pointers?
How do I access command-line arguments?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
Explain modulus operator. What are the restrictions of a modulus operator?
What is the general form of function in c?
main() { int a; a=++100; printf("%d",a); getch(); }
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
What is the default value of local and global variables in c?