Explain how can you determine the size of an allocated portion of memory?
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
What are global variables?
How can you determine the maximum value that a numeric variable can hold?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What does int main () mean?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
Is stack a keyword in c?
What are the two types of functions in c?
What is nested structure?
What is the size of structure pointer in c?
What is include directive in c?