Explain the difference between structs and unions in c?
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.
Explain what is meant by 'bit masking'?
explain what is an endless loop?
Why can't I perform arithmetic on a void* pointer?
how to make program without <> in library.
Why is this loop always executing once?
what is the difference between structural,object based,object orientd programming languages?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
write a progrmm in c language take user interface generate table using for loop?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
What is the purpose of type declarations?
Differentiate between null and void pointers.