what is develop in c language
Answers were Sorted based on User's Feedback
Tell us something about keyword 'auto'.
What do mean by network ?
What is the difference between union and structure in c?
Write a program to print the prime numbers from 1 to 100?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is property type c?
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
Who is the founder of c language?