how do you execute a c program in unix.
No Answer is Posted For this Question
Be the First to Post Answer
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
what are the advantages & disadvantages of unions?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
Explain what are binary trees?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is the difference between fork() and vfork()?
What are the key features of C?
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
What is the purpose of the statement: strcat (S2, S1)?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?