How do shell structures work?
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning of typedef struct in c?
write a program to find the frequency of a number
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
Is null valid for pointers to functions?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is a program flowchart?
What is the value of h?
Tell me about low level programming languages.
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
write a program to gat the digt sum of a number (et. 15= >1+5=6)
What is the difference between Printf(..) and sprint(...) ?