What does double pointer mean in c?
No Answer is Posted For this Question
Be the First to Post Answer
Find greatest number out of 10 number without using loop.
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
What are the salient features of c languages?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
What are the ways to a null pointer can use in c programming language?
What is d scanf?
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?
What does the message "warning: macro replacement within a string literal" mean?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.