What are the disadvantages of c language?
No Answer is Posted For this Question
Be the First to Post Answer
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Is c procedural or functional?
main() { printf(5+"Vidyarthi Computers"); }
What is the difference between the expression “++a” and “a++”?
what is diognisis?
Explain bit masking in c?
implement OR gate without using any bitwise operator.
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
How can I open files mentioned on the command line, and parse option flags?
int i=10; printf("%d %d %d", i, i=20, i);
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
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result