Why ordinary variable store only one value
No Answer is Posted For this Question
Be the First to Post Answer
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
Which built-in library function can be used to match a patter from the string?
Why is c known as a mother language?
What are the types of macro formats?
What are local static variables? How can you use them?
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
What is the stack in c?