What is echo in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between union and structure in c?
Where local variables are stored in c?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
program to find the ASCII value of a number
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
how can i get output like this? 1 2 3 4 5 6
Write a c program to build a heap method using Pointer to function and pointer to structure ?
How do you write a program which produces its own source code as its output?
how to write palindrome program?
void main() { int i=5; printf("%d",i+++++i); }