int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Post New Answer View All Answers
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What do mean by network ?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What does != Mean in c?
Is c dynamically typed?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
How to write a code for reverse of string without using string functions?
in linking some of os executables are linking name some of them
List the difference between a While & Do While loops?
What is difference between structure and union?
What is volatile, register definition in C
What is volatile variable how do you declare it?
Explain the difference between malloc() and calloc() function?
what are the advantages of a macro over a function?
What is nested structure?