Explain void pointer?
What is the purpose of macro in C language?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
plz answer.. a program that takes a string e.g. "345" and returns integer 345
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What is an auto variable in c?
What is wrong with this statement? Myname = 'robin';
What is the memory allocated by the following definition ? int (*x)();
Write a program to generate the Fibinocci Series
what is the use of operator ^ in C ? and how it works?
Why we use int main and void main?
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(“ %d\n”,sum); } what is the difference between a=10 and a=010??