1 votes
1 answer
1
1 votes
1 answer
3
1 votes
2 answers
4
1 votes
1 answer
5
as i know, after fun(&a); the local variable will be destroyed because function is over and pop out from stack thenhow *a can access j variable which is already deleted?
3 votes
1 answer
6
What is the output of the following program?#include<stdio.h void main() { int n=3, i=0; do { n=n++; i++; } while(i!=3); printf(“%d\n”, n); }
2 votes
2 answers
7
0 votes
1 answer
8
char *p="hello"; printf("%d",sizeof(*p));Size of print space occupied.so,why it don't print 6 (6 char * 1B each )?
0 votes
3 answers
9
5 votes
2 answers
10
Assume that $16$-bit CPU is trying to access a double word stating at an odd address. How many memory operations are required to access the data?$1$$2$$3$$4$
6 votes
3 answers
11
How many lines of output does the following C code produce?#include<stdio.h float i=2.0; float j=1.0; float sum = 0.0; main() { while (i/j 0.001) { j+=j; sum=sum+(i/j); ...
0 votes
1 answer
12
can anyone convert into c code i am not familiar with fortran
0 votes
1 answer
13
0 votes
1 answer
14
My English is so poor .if i want to learn Enlish(from abc) for gate what should i do?should i join bank coaching for aptitude and english. Are they teach english from bas...
0 votes
2 answers
15
0 votes
3 answers
16
I am stuck in round Robin please help meIn Gantt chart at 8th sec p5 reinsert in ready queue but p4 also come at 8 sec so the order of process come in ready queue after p...
0 votes
1 answer
17
Is the ccna r&s coaching is beneficial to get good knowledge for networks basics?What are the good coaching for ccna in Delhi?
1 votes
1 answer
18
is there any data types like long floatbecause i saw somewhere in let us c long float i=232.34e24.then i try to run this program and with this statement the program succe...
1 votes
1 answer
19
unsigned int i=-1;unsigned int have range 0 to 65,535 but what happen if we insert -1.