Is swift based on c?
No Answer is Posted For this Question
Be the First to Post Answer
what r callback function?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
what is the difference between 123 and 0123 in c?
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
int x=sizeof(!5.856); What will value of variable x?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
How we can set and clear bit in a byte using macro function?
What are the difference between a free-standing and a hosted environment?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
What is && in c programming?
How do I initialize a pointer to a function?