What are called c variables?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
Explain output of printf("Hello World"-'A'+'B'); ?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
How can I call fortran?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
What is a Deque?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
Explain the difference between fopen() and freopen().
Which is better oop or procedural?
what is a void pointer?