Can you pass an entire structure to functions?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
Explain the bubble sort algorithm.
How do I swap bytes?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
Is it better to use malloc() or calloc()?
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 can I write a function that takes a format string and a variable number of arguments?
How can a string be converted to a number?
Can we declare variable anywhere in c?
what is the output of printf("%d",(scanf("%d",10));
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }