#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answers were Sorted based on User's Feedback
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
declare afunction pointer to int printf(char *)?
Derive the complexity expression for AVL tree?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
explain what is fifo?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Write a C program to fill a rectangle using window scrolling
What is huge pointer in c?
can anyone please tell about the nested interrupts?
Prove or disprove P!=NP.
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Is there any possibility to create customized header file with c programming language?