What are the 4 data types?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap four numbers without using fifth variable?
Explain the bubble sort algorithm.
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
Why do we use pointer to pointer in c?
code for concatination of 2 strings with out using library functions?
Can we change the value of constant variable in c?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
What are lookup tables in c?
What are different types of pointers?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result