What is the sizeof () operator?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
How does placing some code lines between the comment symbol help in debugging the code?
How can I recover the file name given an open stream?
What type is sizeof?
Which is best book for data structures in c?
Do pointers need to be initialized?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
How to set a variable in the environment list?
What is 02d in c?
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
What is the purpose of type declarations?
What is s or c?