Is c procedural or functional?
No Answer is Posted For this Question
Be the First to Post Answer
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
how would a 4*3 array A[4][3] stored in Row Major Order?
What is the difference between a free-standing and a hosted environment?
What is the difference between new and malloc functions?
How to write a C program to determine the smallest among three nos using conditional operator?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
How was c created?
How the C program can be compiled?