Is c procedural or object oriented?
How does variable declaration affect memory?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Why c is known as a mother language?
How can I make sure that my program is the only one accessing a file?
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
write a prgram of swapping with 2 valiables
How do you view the path?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
How can you determine the maximum value that a numeric variable can hold?
How to write a program to receive an integer & find its octal equivalent by using for loop?
What is the usage of the pointer in c?