macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration
Answers were Sorted based on User's Feedback
How can you determine the size of an allocated portion of memory?
What are c preprocessors?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
Is register a keyword in c?
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is stack in c?
what is the main use of c where it can use the c
Do you know what are the properties of union in c?
Can we change the value of constant variable in c?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?