What does emoji p mean?
No Answer is Posted For this Question
Be the First to Post Answer
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
How does sizeof know array size?
Why preprocessor should come before source code?
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
What is Memory leakage ?
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
What are the types of data types and explain?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
Simplify the program segment if X = B then C ← true else C ← false
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
What is the mean of this statement:: if(int i=0 * i=9)