How is = symbol different from == symbol in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is context in c?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
What does %f mean c?
What does %p mean c?
Write a program to print factorial of given number using recursion?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
What are comments and how do you insert it in a C program?
Can you assign a different address to an array tag?
Explain what is the concatenation operator?
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?