in any language the sound structure of that language depends on its
a) character set, input/output function, its control structures
b) character set, library functions, input/output functions its control structures
c) character set, library functions, control sturctures
d) character set, operators, its control structures
What are pointers in C? Give an example where to illustrate their significance.
Does c have circular shift operators?
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
What is sizeof return in c?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
a simple program in c language
how would a 4*3 array A[4][3] stored in Row Major Order?
Why do we need a structure?
Why doesn't the code "a[i] = i++;" work?
how to get starting address of a running C program
what is memory leak?