Explain what’s a signal? Explain what do I use signals for?
No Answer is Posted For this Question
Be the First to Post Answer
What is bubble sort technique in c?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
how many argument we can pas in in a function
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif
how do we remove the printed character in printf statement and write next it it
what is real time system?what is the differance between hard and soft real time systems
Does c have class?
Why data types in all programming languages have some range? Why ritche have disigned first time likethat?Why not a single data type can support all other types?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array