Can we add pointers together?
No Answer is Posted For this Question
Be the First to Post Answer
Is there a way to switch on strings?
What is 2 d array in c?
Taking an example,differentiate b/w loader and linker ?
write a program to compare 2 numbers without using logical operators?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
What is switch in c?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
What are the complete rules for header file searching?
what is constant pointer?
how to print a statement in c without use of console statement ,with the help of if statement it should print
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }