What is the explanation for modular programming?
No Answer is Posted For this Question
Be the First to Post Answer
what is the diff b/w static and non static variables in C. Give some examples plz.
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
List the difference between a "copy constructor" and a "assignment operator"?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
Explain built-in function?
What are valid signatures for the Main function?
write a 'c' program to sum the number of integer values
How to find a missed value, if you want to store 100 values in a 99 sized array?