786 views
0 0 votes

Please log in or register to answer this question.

Position:
Show:

Related questions

0 0 votes
0 0 answers
436
436 views
Anirudh Kaushal asked Apr 6, 2022
436 views
#include<stdio.h struct marks { int p:3; int c:3; int m:2; }; void main() { struct marks s = {2, -6, 5}; printf("%d %d %d", s.p, s.c, s.m); }What does p:3 means here ?
0 0 votes
0 0 answers
778
778 views
Nishi Agarwal asked Mar 10, 2019
778 views
A(n){if(n<1) return (1);else return A(n-2)+B(n-1);}B(n){if(n<=1) return 1;else return B(n-1)+A(n-2);}
0 0 votes
0 0 answers
589
589 views
bts1jimin asked Jan 20, 2019
589 views
0 0 votes
0 0 answers
696
696 views
`JEET asked Dec 8, 2018
696 views
#include <stdio.h int atoi(char s[]) { int i, n; n = 0; for(i = 0; s[i] >= '0' && s[i] <= '9'; ++i) n = 10*n + (s[i] - '0'); return n; } int main() { char s[] = "jitendra...