What is the advantage of c?
No Answer is Posted For this Question
Be the First to Post Answer
What does void main () mean?
how memory store byte
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
How can you call a function, given its name as a string?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Write a program to find given number is even or odd without using any control statement.
How do I round numbers?
#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); }
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4